| Task: | Sanalista |
| Sender: | iiraj |
| Submission time: | 2020-09-28 22:08:08 +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 |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:13:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < x.length(); i++) {
~~^~~~~~~~~~~~
input/code.cpp:28:10: warning: 'o' may be used uninitialized in this function [-Wmaybe-uninitialized]
cout << o;
~~~~~^~~~Code
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
int o;
int n;
cin >> n;
string x;
while (cin >> x) {
bool t = true;
for (int i = 0; i < x.length(); i++) {
char c = x[i];
if ((count(x.begin(), x.end(), c) % 2) == 0) {
continue;
}
else {
t = false;
break;
}
}
if (t) {
o++;
}
}
cout << o;
}
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 1431653135 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
| correct output |
|---|
| 42 |
| user output |
|---|
| 1431653162 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
| correct output |
|---|
| 70 |
| user output |
|---|
| 1431653190 |
