QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#342426 | #8287. Caught in the Middle | Gen1us | WA | 1ms | 3520kb | C++14 | 742b | 2024-03-01 11:19:42 | 2024-03-01 11:19:44 |
Judging History
answer
// Online C++ compiler to run C++ program online
#include <iostream>
#define ll long long
using namespace std;
int main() {
ll s=0;
ll times; cin >> times;
while(times--) {
string str;
int n;
cin >> n;
cin >> str;
while(!str.empty()) {
string current="";
if(str[0]=='L' || str[str.size()-1]=='R') {
cout << "Alice\n";
goto next;
}
int size=str.size();
for(int i=1; i<size; i++) {
if(str[i]==str[i-1]) current=current+str[i];
}
str=current;
}
cout << "Bod\n";
next:
s++;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3520kb
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 Bod Alice Alice Alice Alice Alice Alice Alice Bod Alice Alice Alice Alice Alice Bod Alice Alice Alice
result:
wrong answer 3rd lines differ - expected: 'Bob', found: 'Bod'