| Task: | Sanalista |
| Sender: | budhi |
| Submission time: | 2020-10-06 19:04:25 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 100 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | details |
| #2 | ACCEPTED | 0.01 s | details |
| #3 | ACCEPTED | 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();
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++;
}
}
}
cout << pwords;
}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 |
