| Task: | Bittijono |
| Sender: | ooh |
| Submission time: | 2016-10-04 12:51:32 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | OUTPUT LIMIT EXCEEDED | 0 |
| #3 | OUTPUT LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.05 s | 1 | details |
| #2 | OUTPUT LIMIT EXCEEDED | 0.00 s | 2 | details |
| #3 | OUTPUT LIMIT EXCEEDED | 0.00 s | 3 | details |
Code
#include <iostream>
#include <cmath>
using std::cout;
using std::endl;
using std::cin;
int main (int argc, char** argv) {
long n;
cin >> n;
for (; n>0; n--) {
long pos;
cin >> pos;
long i = 0;
while (pos != 1) {
long x = floor(log2(pos));
long delta = pos - exp2(x);
cout << "x=" << x << " delta=" << delta << " pos=" << pos << endl;
if (delta == 0) {
pos = exp2(x-1);
} else {
pos = delta;
}
i++;
}
cout << (i%2 == 0 ? "0" : "1") << endl;
}
return 0;
}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 100 62 9 12 73 ... |
| correct output |
|---|
| 1 1 1 0 1 ... |
| user output |
|---|
| x=5 delta=30 pos=62 x=4 delta=14 pos=30 x=3 delta=6 pos=14 x=2 delta=2 pos=6 x=1 delta=0 pos=2 ... |
Test 2
Group: 2
Verdict: OUTPUT LIMIT EXCEEDED
| input |
|---|
| 100000 565433 141881 120108 825392 ... |
| correct output |
|---|
| 1 1 0 0 1 ... |
| user output |
|---|
| (empty) |
Test 3
Group: 3
Verdict: OUTPUT LIMIT EXCEEDED
| input |
|---|
| 100000 374768524402011755 937067109466254318 389256426086302899 932585725667010169 ... |
| correct output |
|---|
| 0 1 1 1 1 ... |
| user output |
|---|
| (empty) |
