QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#398758#8287. Caught in the MiddleHHY_zZhu#WA 0ms3836kbC++23430b2024-04-25 17:56:032024-04-25 17:56:04

Judging History

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

  • [2024-04-25 17:56:04]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3836kb
  • [2024-04-25 17:56:03]
  • 提交

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'