CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:budhi
Submission time:2020-10-06 18:56:08 +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 <bits/stdc++.h>

using namespace std;

int main() {
	int numw, pwords;
	pwords = 0;
	cin >> numw;
	for (int i = 1; i <= numw; i++)
	{
		string cword;
		cin >> cword;
		
		sort(cword.begin(), cword.end());	
		int len = cword.size();
		
		/*cout << cword << "\n";*/
		
		bool allpaired = true;
		
		if (len % 2 == 0)
		{
			
			for (int j = 0; j < len; j += 2)
			{
				if (cword.at(j) != cword.at(j+1))
				{
					allpaired = false;
					j = 99;
				}
			}
		}
		
		if (allpaired)
		{
			pwords++;
		}
		
		
		/*
		for (int i = 0; i < cword.size(); i++)
		{
			char l = cword.at(i);
			
			for (int j = 1; j < cword.size() - i; j++))
			{
				lcount = 1;
				if (cword.at(i+j) == l)
				{
					
				}
			}
		}
		*/
	}
	
	cout << pwords;
}

Test details

Test 1

Verdict:

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
511

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
538

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
518