結果

問題 No.2252 Find Zero
ユーザー 👑 rin204rin204
提出日時 2024-04-29 14:32:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 77,904 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-11-18 18:47:53
合計ジャッジ時間 3,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
69,956 KB
testcase_01 AC 134 ms
77,904 KB
testcase_02 AC 92 ms
68,504 KB
testcase_03 AC 119 ms
71,932 KB
testcase_04 AC 96 ms
69,700 KB
testcase_05 AC 92 ms
69,560 KB
testcase_06 AC 92 ms
69,392 KB
testcase_07 AC 93 ms
70,068 KB
testcase_08 AC 103 ms
70,320 KB
testcase_09 AC 112 ms
70,884 KB
testcase_10 AC 90 ms
68,532 KB
testcase_11 AC 92 ms
69,308 KB
testcase_12 AC 91 ms
69,040 KB
testcase_13 AC 91 ms
69,960 KB
testcase_14 AC 93 ms
69,012 KB
testcase_15 AC 93 ms
69,228 KB
testcase_16 AC 91 ms
68,544 KB
testcase_17 AC 92 ms
69,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x, y):
    print(f"? {x} {y}", flush=True)
    return int(input())


n = int(input())
for i in range(1, n, 2):
    res = ask(i - 1, i)
    if res == i - 1 or res == i:
        print(f"! {2 * i - 1 - res}")
        exit()

print(f"! {n - 1}")
0