Task: | Sanalista |
Sender: | AleksandrPolitov |
Submission time: | 2020-10-02 19:22:17 +0300 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
Code
#include <iostream> #include <string> using namespace std; int main() { int c, r = 0; string word; cin >> c; for (int i = 0; i < c; i++) { cin >> word; int t = 0; bool good = true; for (int j = 0; j < (int)word.length(); j++) { if (word[j] >= 'a' && word[j] <= 'z') t++; else good = false; } word = ""; if (t % 2 == 0 && good) r++; } cout << r; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
correct output |
---|
15 |
user output |
---|
504 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
correct output |
---|
42 |
user output |
---|
504 |
Test 3
Verdict: WRONG ANSWER
input |
---|
1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
correct output |
---|
70 |
user output |
---|
552 |