QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#404710 | #6394. Turn on the Light | hanmx# | WA | 0ms | 3568kb | C++17 | 669b | 2024-05-04 15:05:05 | 2024-05-04 15:05:05 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll =long long;
ll ask(ll d)
{
cout<<"? "<<d<<endl;
ll n;
cin>>n;
return n;
}
void solve()
{
int n;
cin>>n;
ll l=1,r=1e9;
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: 0
Wrong Answer
time: 0ms
memory: 3568kb
input:
3
output:
? 500000000
result:
wrong answer Integer parameter [name=x] equals to 500000000, violates the range [1, 3]