QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#217539 | #5596. I Could Have Won | Viktor# | WA | 0ms | 3844kb | C++14 | 1009b | 2023-10-16 23:04:23 | 2023-10-16 23:04:23 |
Judging History
answer
#include <iostream>
using namespace std;
typedef basic_string<char> string;
int rounds[2000];
int main() {
string input;
cin >> input; //Input
int input_length = input.length(); //StringLength
int ACounts = 0, BCounts = 0, AWins = 0, BWins = 0, pos = 0;
for (int k = 1; k < input_length; k++) {
for (int pos = 0; pos < input_length; pos++) {
if (input[pos] == 'A') { ACounts++; }
else { BCounts++; }
if (ACounts == k) {
AWins++;
ACounts = BCounts = 0;
}
else if (BCounts == k) {
BWins++;
BCounts = ACounts = 0;
}
}
if (AWins > BWins) { rounds[pos++] = k; }
ACounts = BCounts = AWins = BWins = 0;
}
cout << pos << endl;
if (pos > 0) {
cout << rounds[0];
for (int i = 1; i < pos; i++) {
cout << " " << rounds[i];
}
cout << endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3844kb
input:
BBAAABABBAAABB
output:
3 3 6 7
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
AABBBAAB
output:
2 2 4
result:
ok 2 lines
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 3600kb
input:
A
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'