結果

問題 No.2252 Find Zero
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-01 00:16:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 105,716 KB
実行使用メモリ 25,580 KB
平均クエリ数 81.06
最終ジャッジ日時 2024-04-30 02:29:28
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
25,196 KB
testcase_01 AC 54 ms
25,580 KB
testcase_02 AC 54 ms
25,196 KB
testcase_03 AC 75 ms
25,196 KB
testcase_04 AC 56 ms
25,196 KB
testcase_05 AC 54 ms
24,556 KB
testcase_06 AC 55 ms
24,556 KB
testcase_07 AC 54 ms
25,196 KB
testcase_08 AC 69 ms
24,836 KB
testcase_09 AC 74 ms
24,836 KB
testcase_10 AC 53 ms
25,196 KB
testcase_11 AC 52 ms
24,784 KB
testcase_12 AC 53 ms
25,484 KB
testcase_13 AC 52 ms
24,940 KB
testcase_14 AC 52 ms
24,812 KB
testcase_15 AC 52 ms
25,196 KB
testcase_16 AC 53 ms
25,196 KB
testcase_17 AC 52 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

void qry(int x, int y){
    cout << "? " << x << " " << y << endl;
}

void ans(int z){
    cout << "! " << z << endl;
    exit(0);
}

int main(){

    int N, k;
    cin >> N;
    for (int i=0; i<N/2; i++){
        qry(i, N-1-i);
        cin >> k;
        if (i == k) ans(N-1-i);
        else if (N-1-i == k) ans(i);
    }

    ans(N/2);

    return 0;
}
0