QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#251944 | #6394. Turn on the Light | ucup-team1074 | WA | 1ms | 3580kb | C++20 | 1.2kb | 2023-11-15 13:34:52 | 2023-11-15 13:34:52 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second
//#define endl '\n'
const LL maxn = 4e05+7;
const LL N=1e05+10;
const LL mod=1e09+7;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >t;
priority_queue<LL> q;
LL gcd(LL a, LL b){
return b > 0 ? gcd(b , a % b) : a;
}
LL lcm(LL a , LL b){
return a / gcd(a , b) * b;
}
int n , m;
int a[N];
void init(int n){
for(int i = 0 ; i <= n ; i ++){
a[i] = 0;
}
}
void solve()
{
int n;
cin >> n;
int l = 1 , r = n;
int vis[n + 5];
int x = 0, prex = 0;
while(l < r){
if(x == 0){
cout<<"? " << l <<endl;
cin >> x;
if(x == 0){
cout<<"! " <<l<<endl;
return;
}
else{
l ++;
prex = x;
}
}
int mid = (l + r) / 2;
cout<<"? "<<mid<<endl;
cin >> x;
if(x > prex){
l = mid + 1;
}
else if(x < prex){
r = mid - 1;
}
else{
cout <<"! " << mid<<endl;
return;
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cout.precision(10);
int 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: 1ms
memory: 3580kb
input:
3 1 2
output:
? 1 ? 2
result:
wrong answer format Unexpected end of file - token expected