結果

問題 No.2252 Find Zero
ユーザー mkawa2mkawa2
提出日時 2023-03-24 21:28:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,384 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:45:16
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
27,336 KB
testcase_01 AC 113 ms
27,080 KB
testcase_02 AC 82 ms
26,824 KB
testcase_03 AC 96 ms
27,208 KB
testcase_04 AC 83 ms
27,232 KB
testcase_05 AC 82 ms
27,240 KB
testcase_06 AC 83 ms
26,976 KB
testcase_07 AC 83 ms
27,232 KB
testcase_08 AC 93 ms
27,104 KB
testcase_09 AC 98 ms
27,312 KB
testcase_10 AC 84 ms
27,232 KB
testcase_11 AC 81 ms
26,976 KB
testcase_12 AC 81 ms
26,592 KB
testcase_13 AC 87 ms
27,384 KB
testcase_14 AC 85 ms
26,592 KB
testcase_15 AC 85 ms
26,976 KB
testcase_16 AC 86 ms
26,840 KB
testcase_17 AC 86 ms
26,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(i,j):
    print("?",i,j,flush=True)
    return int(input())

n=int(input())

for i in range(0,n-1,2):
    j=ask(i,i+1)
    if i==j or i+1==j:
        print("!",j^1,flush=True)
        exit()

print("!",n-1,flush=True)
0