Task: | Sanalista |
Sender: | Mahtimursu |
Submission time: | 2020-09-28 00:09:09 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h> typedef long long ll; #define M 1000000007 using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n; cin >> n; int ans = 0; for (int y = 0; y < n; ++y) { string s; cin >> s; sort(s.begin(), s.end()); int cur = 1; bool ok = true; for (int i = 1; i < (int)s.length(); ++i) { if (s[i-1] == s[i]) cur++; else { if (cur % 2 != 0) { //cout << "broke " << s[i] << endl; ok = false; break; } cur = 1; } } if (ok) ans++; } cout << ans << endl; return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
correct output |
---|
15 |
user output |
---|
15 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
correct output |
---|
42 |
user output |
---|
45 |
Test 3
Verdict: WRONG ANSWER
input |
---|
1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
correct output |
---|
70 |
user output |
---|
72 |