# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
17514 |
2015-12-24T02:52:28 Z |
gs14004 |
cmp (balkan11_cmp) |
C++14 |
|
1010 ms |
104988 KB |
#include "cmp.h"
#include <vector>
#include <algorithm>
using namespace std;
void remember(int n) {
n += 4096;
while(n){
bit_set(n);
n >>= 1;
}
}
int compare(int b) {
b += 4096;
if(bit_get(b)) return 0;
vector<int> v;
while(b){
v.push_back(b);
b >>= 1;
}
reverse(v.begin(), v.end());
int s = 0, e = v.size() - 1;
while(s != e){
int m = (s+e)/2;
if(!bit_get(v[m])) e = m;
else s = m+1;
}
if(v[s]%2) return -1;
return 1;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1010 ms |
104988 KB |
ZERO POINTS: For a=3040 and b=3318, correct answer is 1, got -1 |