QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#588760 | #6394. Turn on the Light | yumingsk# | WA | 0ms | 3632kb | C++14 | 1.1kb | 2024-09-25 14:22:36 | 2024-09-25 14:22:41 |
Judging History
answer
#pragma GCC optimize(3, "Ofast", "inline")
#include <iostream>
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define INF 0x3f3f3f3f
#define L_INF 0x7f3f3f3f3f3f3f3f
#define db cout << "debug\n";
using namespace std;
const int Mod = 998244353;
using ll = long long;
int fh = 0;
int print(int x)
{
cout << "? " << x << endl;
int c;
cin >> c;
return c - fh;
}
int f(int l, int r)
{
if (l >= r)
return l;
int num = 0;
int ttt = 1;
for (int i = l; i <= r; i += ttt)
{
if (i != l)
ttt *= 2;
int nxt = print(i);
num++;
if (nxt == num)
continue;
else if (nxt == num - 1)
{
return i;
}
else
{
fh += nxt;
return f(i - ttt / 2 + 1, i - 1);
}
}
}
void solve()
{
int n;
cin >> n;
int res = f(1, n);
cout << "! " << res << endl;
}
int main()
{
// IOS;
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: 0ms
memory: 3632kb
input:
3 1 2
output:
? 1 ? 2 ? 4
result:
wrong answer Integer parameter [name=x] equals to 4, violates the range [1, 3]