QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#506623 | #4912. WereYouLast | lifan | 90 | 4797ms | 5064kb | C++14 | 448b | 2024-08-05 20:14:50 | 2024-08-05 20:14:50 |
Judging History
answer
//
#include<bits/stdc++.h>
using namespace std;
bool query(int);
void modify(int,bool);
bool WereYouLast(int n,int m){
int pw=__lg(n),now=0;
for(int i=1;i<=5;i++) now=((now<<1)|query(i));
if(now==pw) return 1;
if(now==pw-1){
for(int i=5;i;--i) modify(i,pw&1),pw>>=1;
return 0;
}
int op=query(now+50);
if(op) modify(50+now,0),++now;
else modify(50+now,1),now=0;
for(int i=5;i;--i) modify(i,now&1),now>>=1;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3816kb
input:
1024 10
output:
12345876 -2 50
result:
wrong answer Invalid Operation At Position 50.
Subtask #2:
score: 20
Accepted
Test #2:
score: 20
Accepted
time: 2ms
memory: 5064kb
input:
65536 100000
output:
12345876 6 6
result:
ok Correct Answer. C1 = 6. C2 = 6.
Subtask #3:
score: 30
Accepted
Test #3:
score: 30
Accepted
time: 77ms
memory: 4972kb
input:
1048576 100000
output:
12345876 6 6
result:
ok Correct Answer. C1 = 6. C2 = 6.
Subtask #4:
score: 40
Accepted
Test #4:
score: 40
Accepted
time: 4797ms
memory: 4996kb
input:
67108864 100000
output:
12345876 6 6
result:
ok Correct Answer. C1 = 6. C2 = 6.