QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#251961 | #6394. Turn on the Light | ucup-team1074 | WA | 1ms | 3580kb | C++17 | 1.3kb | 2023-11-15 13:44:44 | 2023-11-15 13:44:44 |
Judging History
answer
#include<iostream>
#include<math.h>
#include<vector>
#include<unordered_map>
#include<algorithm>
#include<queue>
#include<string.h>
#include<stack>
#define ll long long
using namespace std;
int a[100010];
int b[100010];
void solve()
{
int n;
cin>>n;
int l=1,r=n;
int res1=0;
int res2=0;
int len=0;
int ans[50];
while(1)
{
int mid =(l+r)>>1;
cout<<"? "<<mid<<endl;
++len;
cin>>ans[len];
if(len==1)
{
if(ans[len]==0)
{
cout<<"! "<<mid<<endl;
break;
}
else if(ans[len]>0)
{
l=mid+1;
}
else
{
r=mid-1;
}
continue;
}
if(ans[len]==ans[len-1])
{
cout<<"! "<<mid<<endl;
break;
}
else if(ans[len]>ans[len-1])
{
l=mid+1;
}
else
{
r=mid-1;
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cout.precision(10);
int t;
t=1;
while(t>0)
{
t--;
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3580kb
input:
3 1 1
output:
? 2 ? 3 ! 3
result:
ok Correct position at 3
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3572kb
input:
10 1 2 3 4 4
output:
? 5 ? 8 ? 9 ? 10 ? 10 ! 10
result:
wrong answer Wrong answer, more than 1 possible light!