結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
27,336 KB
testcase_01 AC 117 ms
27,080 KB
testcase_02 AC 90 ms
27,208 KB
testcase_03 AC 103 ms
27,336 KB
testcase_04 AC 89 ms
27,104 KB
testcase_05 AC 88 ms
27,104 KB
testcase_06 AC 88 ms
27,104 KB
testcase_07 AC 89 ms
27,368 KB
testcase_08 AC 97 ms
27,360 KB
testcase_09 AC 104 ms
27,232 KB
testcase_10 AC 86 ms
27,112 KB
testcase_11 AC 84 ms
27,360 KB
testcase_12 AC 84 ms
27,232 KB
testcase_13 AC 89 ms
26,856 KB
testcase_14 AC 88 ms
27,360 KB
testcase_15 AC 87 ms
27,104 KB
testcase_16 AC 89 ms
27,480 KB
testcase_17 AC 87 ms
27,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

x, y = 0, 1
for _ in range(n // 2):
    print(f"? {x} {y}")
    z = int(input())
    if z == x:
        print(f"! {y}")
        exit()
    if z == y:
        print(f"! {x}")
        exit()
    x = (x + 2) % n
    y = (y + 2) % n
print("! " + str(n - 1))
0