| Task: | Sanalista |
| Sender: | Juksu |
| Submission time: | 2020-09-28 14:03:14 +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(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
string b[n];
int l = 0;
for (int i = 0; i < n; i++) {
string s;
cin >> s;
map<char, int> m;
for (unsigned int j = 0; j < s.length(); j++) {
char c = s[j];
m.insert(pair<char, int>(c, 0));
auto it = m.find(c);
it->second += 1;
}
bool c = true;
for (auto const& k: m) {
if (!(k.second % 2 == 0)) {
auto it = m.find(k.first);
cout << it->second << " ";
cout << k.first << " " << k.second << "\n";
c = false;
break;
}
}
if (c) {
l++;
}
}
cout << l;
}
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 1 k 1 1 k 1 3 a 3 3 a 3 1 i 1 ... Truncated |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
| correct output |
|---|
| 42 |
| user output |
|---|
| 1 b 1 1 e 1 1 a 1 1 a 1 1 h 1 ... Truncated |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
| correct output |
|---|
| 70 |
| user output |
|---|
| 1 h 1 3 i 3 1 e 1 1 d 1 1 a 1 ... Truncated |
