QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#465717 | #8523. Puzzle II | ucup-team3684# | WA | 1ms | 3820kb | C++20 | 3.6kb | 2024-07-07 06:15:30 | 2024-07-07 06:15:30 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3544kb
input:
6 3 BCCBCC BBCBBC
output:
2 2 4 4 6
result:
ok moves = 2
Test #2:
score: 0
Accepted
time: 0ms
memory: 3740kb
input:
2 1 BC BC
output:
1 2 1
result:
ok moves = 1
Test #3:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
2 1 BB CC
output:
0
result:
ok moves = 0
Test #4:
score: 0
Accepted
time: 0ms
memory: 3532kb
input:
2 1 CC BB
output:
0
result:
ok moves = 0
Test #5:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
3 1 CCC BBB
output:
0
result:
ok moves = 0
Test #6:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
3 1 CBC BCB
output:
1 2 2
result:
ok moves = 1
Test #7:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
3 2 BBB CCC
output:
0
result:
ok moves = 0
Test #8:
score: -100
Wrong Answer
time: 0ms
memory: 3612kb
input:
3 2 BCB BCC
output:
1 1 2
result:
wrong answer The final sequences are not correct!