結果

問題 No.2252 Find Zero
ユーザー mkawa2mkawa2
提出日時 2023-03-24 21:27:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 11,752 KB
実行使用メモリ 26,488 KB
平均クエリ数 78.17
最終ジャッジ日時 2023-10-18 20:44:30
合計ジャッジ時間 2,932 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
26,480 KB
testcase_01 AC 113 ms
26,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 81 ms
26,480 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 84 ms
26,480 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

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,flush=True)
        exit()

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