QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#404712 | #6394. Turn on the Light | hanmx# | WA | 1ms | 3588kb | C++17 | 673b | 2024-05-04 15:06:38 | 2024-05-04 15:06:38 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll =long long;
int ask(ll d)
{
cout<<"?"<<" "<<d<<endl;
int n;
cin>>n;
return n;
}
void solve()
{
int n;
cin>>n;
ll l=0,r=n;
ll t=0;
while(l<=r)
{
ll mid=(l+r)>>1;
ll d=ask(mid);
if(d==t)
{
cout<<"!"<<" "<<mid<<endl;
return;
}else if(d>t)
{
l=mid+1;
}else{
r=mid-1;
}
t=d;
//cout<<l<<" "<<r<<" "<<t<<"\n";
}
}
int main(){
ll t=1;
//cin>>t;
while(t--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3588kb
input:
3 1 2 2
output:
? 1 ? 2 ? 3 ! 3
result:
ok Correct position at 3
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3544kb
input:
10 1 2 3 4
output:
? 5 ? 8 ? 9 ? 10
result:
wrong answer format Unexpected end of file - token expected