QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#398758 | #8287. Caught in the Middle | HHY_zZhu# | WA | 0ms | 3836kb | C++23 | 430b | 2024-04-25 17:56:03 | 2024-04-25 17:56:04 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
void solve() {
int n; cin >> n;
string s; cin >> s;
s = " " + s;
if(n & 1) {
cout << "Alice\n";
return;
}
bool ok = 1;
for(int i = 1; i <= n; i += 2) {
if(s[i] != 'R' || s[i + 1] != 'L') ok = 0;
}
cout << (ok ? "Bob\n" : "Alice\n");
}
int main() {
int t = 1;
cin >> t;
while(t--) solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3836kb
input:
20 10 RLRRRRLLRR 10 LRLLLLRRLR 6 RLRLRL 10 LLRLRRRRLR 6 LRRLLL 3 RLR 5 LLRRR 6 RRRRRL 9 LRRRLRRLR 1 R 10 RRRLLRRLLL 6 LRLLLR 9 LLRLRLRLR 7 RRRRLRR 2 LL 10 RRRLLRRLRR 2 RL 7 RRLRRLR 3 LLR 10 LLRLRRRLLR
output:
Alice Alice Bob Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Bob Alice Alice Alice
result:
wrong answer 11th lines differ - expected: 'Bob', found: 'Alice'