結果

問題 No.2252 Find Zero
ユーザー ntudantuda
提出日時 2023-03-24 21:50:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,240 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 17:00:42
合計ジャッジ時間 3,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
26,952 KB
testcase_01 AC 117 ms
26,952 KB
testcase_02 AC 82 ms
26,952 KB
testcase_03 AC 97 ms
27,080 KB
testcase_04 AC 84 ms
26,976 KB
testcase_05 AC 83 ms
27,104 KB
testcase_06 AC 83 ms
27,104 KB
testcase_07 AC 85 ms
27,240 KB
testcase_08 AC 93 ms
26,592 KB
testcase_09 AC 99 ms
27,112 KB
testcase_10 AC 83 ms
27,104 KB
testcase_11 AC 80 ms
27,096 KB
testcase_12 AC 80 ms
26,968 KB
testcase_13 AC 81 ms
27,240 KB
testcase_14 AC 84 ms
26,976 KB
testcase_15 AC 82 ms
26,856 KB
testcase_16 AC 83 ms
26,848 KB
testcase_17 AC 84 ms
26,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N // 2):
    print("?", 2 * i, 2 * i + 1)
    a = int(input())
    if a == 2 * i:
        print("!", 2 * i + 1)
        break
    elif a == 2 * i + 1:
        print("!", 2 * i)
        break
else:
    print("!", N - 1)
0