QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#342514#8287. Caught in the MiddleGen1usWA 0ms3480kbC++141.1kb2024-03-01 11:57:392024-03-01 11:57:39

Judging History

你现在查看的是最新测评结果

  • [2024-03-01 11:57:39]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3480kb
  • [2024-03-01 11:57:39]
  • 提交

answer

#include <iostream>
using namespace std;
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int times;
    cin >> times;
    while(times--) {
        string str;
        bool done = true;
        int n;
        cin >> n >> str;
if(str.size()>5000)
        for(int i=0; i<5000; i++) {
            if(str[i]!='R') {
                done=false;
                break;
            }
        }
        if(done) {
            cout << "Alice\n";
            continue;
        }
        done=false;
        while(!str.empty()) {
            string current = "";
            int size = str.size();
            if(str[0] == 'L' || str[size - 1] == 'R') {
                cout << "Alice\n";
                done = true;
                break;
            }
            for(int i = 1; i < size; i++) {
                if(str[i] == str[i - 1]) {
                    current += str[i];
                }
            }
            str = current;
        }
        if(!done) {
            cout << "Bob\n";
        }
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3480kb

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
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice
Alice

result:

wrong answer 3rd lines differ - expected: 'Bob', found: 'Alice'