| Task: | Bittijono |
| Sender: | Kauri Pälsi |
| Submission time: | 2019-01-17 14:52:59 +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.02 s | 1 | details |
| #2 | WRONG ANSWER | 0.03 s | 1 | details |
| #3 | WRONG ANSWER | 0.02 s | 1 | details |
| #4 | WRONG ANSWER | 0.02 s | 1 | details |
| #5 | ACCEPTED | 0.02 s | 1 | details |
| #6 | ACCEPTED | 0.03 s | 1 | details |
| #7 | ACCEPTED | 0.02 s | 1 | details |
| #8 | WRONG ANSWER | 0.02 s | 2 | details |
| #9 | WRONG ANSWER | 0.02 s | 2 | details |
| #10 | WRONG ANSWER | 0.03 s | 2 | details |
| #11 | WRONG ANSWER | 0.01 s | 2 | details |
| #12 | ACCEPTED | 0.03 s | 2 | details |
| #13 | ACCEPTED | 0.02 s | 2 | details |
| #14 | ACCEPTED | 0.01 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.04 s | 3 | details |
| #19 | WRONG ANSWER | 0.04 s | 3 | details |
| #20 | ACCEPTED | 0.03 s | 3 | details |
| #21 | ACCEPTED | 0.02 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:43:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(found==string::npos) {
~~~~~^~~~~~~~
input/code.cpp:22:10: warning: unused variable 'one0' [-Wunused-variable]
long one0 = -1;
^~~~
input/code.cpp:23:10: warning: unused variable 'one1' [-Wunused-variable]
long one1 = -1;
^~~~Code
//c++
#include <bits/stdc++.h>
#include <bitset>
using namespace std;
int consum(int num) {
return num*(num+1)/2;
}
int main() {
string bits;
long total = 0;
long zero0 = 0;
long zero1 = 0;
long zero2 = 0;
long one0 = -1;
long one1 = -1;
int runs = 0;
cin >> bits;
long marker = -1;
int found = 0;
bool end = false;
while (!end) {
runs += 1;
found=bits.find_first_of("1",marker+1);
zero0 = zero1;
zero1 = zero2;
if(found==string::npos) {
zero2 = bits.length()-marker-1;
end = true;
} else {
zero2 = found-marker-1;
}
marker = found;
//cout << "z:" << zero0 << ":" << zero1 << ":" << zero2 << " ";
//cout << "r:" << runs << "\n";
total += consum(zero2);
if(runs > 2) {
total += (zero0+1)*(zero2+1);
}
}
cout << total;
//vector<bool> bits;
return 0;
}Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 111111111111111111111111111111... |
| correct output |
|---|
| 2500 |
| user output |
|---|
| 99 |
Test 2
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 111101111111101111111011011110... |
| correct output |
|---|
| 2502 |
| user output |
|---|
| 144 |
Test 3
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 000110011101101000000000101010... |
| correct output |
|---|
| 2590 |
| user output |
|---|
| 349 |
Test 4
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 110101000010001000101100011000... |
| correct output |
|---|
| 2502 |
| user output |
|---|
| 655 |
Test 5
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 000000000000000000000000000000... |
| correct output |
|---|
| 5050 |
| user output |
|---|
| 5050 |
Test 6
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
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 |
|---|
| 4999 |
Test 9
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 111111111110101111111010111011... |
| correct output |
|---|
| 6250342 |
| user output |
|---|
| 8259 |
Test 10
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 110110111000000001011100000011... |
| correct output |
|---|
| 6252352 |
| user output |
|---|
| 15051 |
Test 11
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 000000001000101001001110100011... |
| correct output |
|---|
| 6253422 |
| user output |
|---|
| 34661 |
Test 12
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 000000000000000000000000000000... |
| correct output |
|---|
| 12502500 |
| user output |
|---|
| 12502500 |
Test 13
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
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 |
|---|
| 499999 |
Test 16
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 101101100110111101111011111101... |
| correct output |
|---|
| 62500057360 |
| user output |
|---|
| 833075 |
Test 17
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 011100000010000011110101010001... |
| correct output |
|---|
| 62500117306 |
| user output |
|---|
| 1506455 |
Test 18
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 001010011010000001100011001101... |
| correct output |
|---|
| 62500144780 |
| user output |
|---|
| 3462199 |
Test 19
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 000000000000000000000000000000... |
| correct output |
|---|
| 125000250000 |
| user output |
|---|
| 446198416 |
Test 20
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 21
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
