CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:ollpu
Submission time:2016-01-22 19:10:11 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1details
#20.07 s1details
#30.05 s1details
#40.05 s1details
#50.05 s1details
#60.06 s2details
#70.05 s2details
#80.05 s2details
#90.05 s2details
#100.05 s2details
#110.05 s3details
#120.06 s3details
#130.06 s3details
#140.06 s3details
#150.05 s3details

Code

#include <iostream>
#include <bitset>
using namespace std;
int main() {
long n;
cin >> n;
for (long i = 0; i < n; ++i) {
string sana;
cin >> sana;
bool done = false;
bool finnish = false;
bool vowel = false;
bool lastVowel = false;
for (char c : sana) {
lastVowel = vowel;
vowel = false;
switch (c) {
case char(0xC3):
finnish = true;
done = true;
break;
case 'w': case 'x': case 'z': case 'c':
finnish = false;
done = true;
break;
case 'a': case 'e': case 'i': case 'o': case 'u': case 'y':
vowel = true;
break;
}
if (done) break;
}
if (!done && !vowel && !lastVowel) { finnish = false; }
if (finnish) cout << "10-4" << "\n";
else cout << "QAQ" << "\n";
}
}

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
(empty)

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
(empty)

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
(empty)

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
(empty)

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
(empty)

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
(empty)

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
(empty)

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
(empty)

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
(empty)

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
(empty)

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
(empty)

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
(empty)

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
(empty)

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
(empty)

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
(empty)