| Task: | Sanalista |
| Sender: | AleksandrPolitov |
| Submission time: | 2020-09-30 17:56:24 +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:22:10: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
cout << r;
~~~~~^~~~Code
#include <iostream>
using namespace std;
int main()
{
int c, r;
char nW[30];
cin >> c;
for (int i = 0; i < c; i++) {
cin >> nW;
int t = 0;
for (int j = 0; j < 30; j++) {
if(nW[j] > 'a' && nW[j] < 'z') {
t++;
}
}
if(t % 2 == 0)
r++;
}
cout << r;
}
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 1431653443 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
| correct output |
|---|
| 42 |
| user output |
|---|
| 1431653461 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
| correct output |
|---|
| 70 |
| user output |
|---|
| 1431653442 |
