Task: | Bittijono |
Sender: | Kerkko Konola |
Submission time: | 2019-01-17 16:52:05 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | 1 | details |
#2 | WRONG ANSWER | 0.01 s | 1 | details |
#3 | WRONG ANSWER | 0.02 s | 1 | details |
#4 | WRONG ANSWER | 0.02 s | 1 | details |
#5 | WRONG ANSWER | 0.02 s | 1 | details |
#6 | WRONG ANSWER | 0.02 s | 1 | details |
#7 | ACCEPTED | 0.01 s | 1 | details |
#8 | WRONG ANSWER | 0.02 s | 2 | details |
#9 | WRONG ANSWER | 0.02 s | 2 | details |
#10 | WRONG ANSWER | 0.02 s | 2 | details |
#11 | WRONG ANSWER | 0.01 s | 2 | details |
#12 | WRONG ANSWER | 0.02 s | 2 | details |
#13 | WRONG ANSWER | 0.02 s | 2 | details |
#14 | ACCEPTED | 0.02 s | 2 | details |
#15 | WRONG ANSWER | 0.04 s | 3 | details |
#16 | WRONG ANSWER | 0.04 s | 3 | details |
#17 | WRONG ANSWER | 0.04 s | 3 | details |
#18 | WRONG ANSWER | 0.05 s | 3 | details |
#19 | WRONG ANSWER | 0.05 s | 3 | details |
#20 | WRONG ANSWER | 0.01 s | 3 | details |
#21 | ACCEPTED | 0.02 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:14:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < ui.length(); i++) { ~~^~~~~~~~~~~~~ input/code.cpp:27:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < ui.length(); i++) { ~~^~~~~~~~~~~~~
Code
#include <iostream> #include <vector> #include <string> #include <map> #include <math.h> using namespace std; int main() { string ui; cin >> ui; vector<int> ykkoset; for (int i = 0; i < ui.length(); i++) { ykkoset.push_back(0); } int yk = 0; for (int it = ui.length()-1; it >= 0; it--) { ykkoset[it] = yk; if (ui[it] == '1') { yk += 1; } } int ans = 0; for (int i = 0; i < ui.length(); i++) { if (ui[i] == '1') { ans += int(ykkoset[i]/2); } else { ans += ykkoset[i]; } } cout << ans << endl; return 0; }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
111111111111111111111111111111... |
correct output |
---|
2500 |
user output |
---|
2450 |
Test 2
Group: 1
Verdict: WRONG ANSWER
input |
---|
111101111111101111111011011110... |
correct output |
---|
2502 |
user output |
---|
2427 |
Test 3
Group: 1
Verdict: WRONG ANSWER
input |
---|
000110011101101000000000101010... |
correct output |
---|
2590 |
user output |
---|
1787 |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
110101000010001000101100011000... |
correct output |
---|
2502 |
user output |
---|
810 |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
000000000000000000000000000000... |
correct output |
---|
5050 |
user output |
---|
0 |
Test 6
Group: 1
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
1 |
user output |
---|
0 |
Test 7
Group: 1
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
111111111111111111111111111111... |
correct output |
---|
6250000 |
user output |
---|
6247500 |
Test 9
Group: 2
Verdict: WRONG ANSWER
input |
---|
111111111110101111111010111011... |
correct output |
---|
6250342 |
user output |
---|
5835758 |
Test 10
Group: 2
Verdict: WRONG ANSWER
input |
---|
110110111000000001011100000011... |
correct output |
---|
6252352 |
user output |
---|
4718219 |
Test 11
Group: 2
Verdict: WRONG ANSWER
input |
---|
000000001000101001001110100011... |
correct output |
---|
6253422 |
user output |
---|
2834471 |
Test 12
Group: 2
Verdict: WRONG ANSWER
input |
---|
000000000000000000000000000000... |
correct output |
---|
12502500 |
user output |
---|
0 |
Test 13
Group: 2
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
1 |
user output |
---|
0 |
Test 14
Group: 2
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 15
Group: 3
Verdict: WRONG ANSWER
input |
---|
111111111111111111111111111111... |
correct output |
---|
62500000000 |
user output |
---|
-1924759440 |
Test 16
Group: 3
Verdict: WRONG ANSWER
input |
---|
101101100110111101111011111101... |
correct output |
---|
62500057360 |
user output |
---|
-1609889585 |
Test 17
Group: 3
Verdict: WRONG ANSWER
input |
---|
011100000010000011110101010001... |
correct output |
---|
62500117306 |
user output |
---|
-379915967 |
Test 18
Group: 3
Verdict: WRONG ANSWER
input |
---|
001010011010000001100011001101... |
correct output |
---|
62500144780 |
user output |
---|
1640677979 |
Test 19
Group: 3
Verdict: WRONG ANSWER
input |
---|
000000000000000000000000000000... |
correct output |
---|
125000250000 |
user output |
---|
0 |
Test 20
Group: 3
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
1 |
user output |
---|
0 |
Test 21
Group: 3
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
0 |
user output |
---|
0 |