CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:AleksandrPolitov
Submission time:2020-10-02 18:53:51 +0300
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.01 sdetails
#20.01 sdetails
#30.01 sdetails

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:15:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for (int j = 0; j < word.length(); j++) {
                         ~~^~~~~~~~~~~~~~~

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 < word.length(); j++) {
            if (word[j] >= 'a' && word[j] <= 'z')
            {
                t++;
                good = false;
            }
            word = "";
        }
        if (t % 2 == 0 && good)
            r++;
    }
    cout << r;
}

Test details

Test 1

Verdict:

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
0

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
0

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
0