Task: | Sanalista |
Sender: | budhi |
Submission time: | 2020-10-06 18:59:09 +0300 |
Language: | C++ (C++11) |
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 <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 ((char)cword.at(j) != (char)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: WRONG ANSWER
input |
---|
1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
correct output |
---|
15 |
user output |
---|
511 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
correct output |
---|
42 |
user output |
---|
538 |
Test 3
Verdict: WRONG ANSWER
input |
---|
1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
correct output |
---|
70 |
user output |
---|
518 |