結果

問題 No.2252 Find Zero
ユーザー 310icecrystal310icecrystal
提出日時 2023-05-11 03:46:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,968 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-05-05 09:58:17
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
69,216 KB
testcase_01 AC 141 ms
79,968 KB
testcase_02 AC 87 ms
68,064 KB
testcase_03 AC 123 ms
75,488 KB
testcase_04 AC 91 ms
68,192 KB
testcase_05 AC 90 ms
68,824 KB
testcase_06 AC 86 ms
68,568 KB
testcase_07 AC 88 ms
67,928 KB
testcase_08 AC 101 ms
69,480 KB
testcase_09 AC 117 ms
75,744 KB
testcase_10 AC 90 ms
68,056 KB
testcase_11 AC 85 ms
68,440 KB
testcase_12 AC 94 ms
68,704 KB
testcase_13 AC 88 ms
68,440 KB
testcase_14 AC 85 ms
68,184 KB
testcase_15 AC 87 ms
68,056 KB
testcase_16 AC 84 ms
68,568 KB
testcase_17 AC 84 ms
68,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
q = N // 2
for i in range(q):
    a = i * 2
    b = i * 2 + 1
    print("?",a,b,flush=True)
    z = int(input())
    if a == z:
        print("!",b,flush=True)
        exit()
    if b == z:
        print("!",a,flush=True)
        exit()
print("!",N-1,flush=True)
exit()
0