CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:Kertor
Submission time:2020-09-30 00:21:50 +0300
Language:C++ (C++11)
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#2ACCEPTED0.01 sdetails
#3ACCEPTED0.01 sdetails

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:24:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int l = 0; l < Word.length(); l++)
                  ~~^~~~~~~~~~~~~~~

Code

#include <iostream>
#include <iomanip>
#include <sstream>
#include <vector>
#include <string>
#include <bits/stdc++.h>
#define ll long long int
using namespace std;
int main() {
string Alphabet = "abcdefghijklmnopqrstuvwxyz"; //26 Letters
int n = 0;
cin >> n;
int Pairs = 0;
//Words
for(int i = 0; i < n; i++)
{
string Word;
int PairInt[26] = {0};
cin >> Word;
//Letters
for(int l = 0; l < Word.length(); l++)
{
PairInt[Alphabet.find(Word[l])] += 1;
}
Pairs++;
//Checking for odd
for(int b = 0; b < 26; b++)
{
if(PairInt[b] % 2 > 0)
{
Pairs--;
break;
}
}
}
cout << Pairs;
}

Test details

Test 1

Verdict: ACCEPTED

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
15

Test 2

Verdict: ACCEPTED

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
42

Test 3

Verdict: ACCEPTED

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
70