CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:Tobdu
Submission time:2020-09-29 20:43:13 +0300
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.01 sdetails
#20.01 sdetails
#30.01 sdetails

Code

#include <iostream>
#include <string>
using namespace std;

int main()
{
    int words_amount;
    int wweaol = 0;
    cin >> words_amount;

    for (int i=0; i<words_amount; i++) {
        string current_word;
        cin >> current_word;

        bool even_amount = false;

        if (current_word.length() % 2 == 0) {
            for (unsigned int j=0; j<current_word.length(); j++) {
                char current_character = current_word[j];
                int chars_found = 0;

                for (unsigned int k=j++; k<current_word.length(); k++) {
                    if (current_word[k] == current_character) {
                        chars_found++;
                    }
                }

                if (chars_found % 2 == 0) {
                    even_amount = true;
                }
            }

            if (even_amount) {
                wweaol++;
            }
        }
    }

    cout << wweaol << endl;
    return 0;
}

Test details

Test 1

Verdict:

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
363

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
362

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
413