結果

問題 No.2252 Find Zero
ユーザー noya2noya2
提出日時 2023-01-20 00:12:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 201,828 KB
実行使用メモリ 25,348 KB
平均クエリ数 195.33
最終ジャッジ日時 2024-06-22 16:55:47
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n; cin >> n;
    int ans = n-1;
    for (int i = 0; i < n/2; i++){
        cout << "? " << 2*i << " " << 2*i+1 << endl;
        int k; cin >> k;
        if (k == 2*i) ans = 2*i+1;
        if (k == 2*i+1) ans = 2*i;
    }
    cout << "! " << ans << endl;
}
0