結果

問題 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
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,792 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:44:28
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
27,208 KB
testcase_01 AC 119 ms
27,080 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 82 ms
27,488 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 81 ms
27,240 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