結果

問題 No.2252 Find Zero
ユーザー titiatitia
提出日時 2023-03-24 21:27:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 293 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,592 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:43:54
合計ジャッジ時間 3,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 88 ms
26,696 KB
testcase_03 AC 100 ms
27,208 KB
testcase_04 AC 90 ms
27,104 KB
testcase_05 AC 89 ms
26,976 KB
testcase_06 AC 88 ms
27,104 KB
testcase_07 AC 88 ms
27,104 KB
testcase_08 AC 98 ms
26,976 KB
testcase_09 AC 103 ms
27,224 KB
testcase_10 AC 85 ms
26,976 KB
testcase_11 AC 87 ms
27,104 KB
testcase_12 RE -
testcase_13 AC 87 ms
26,728 KB
testcase_14 AC 87 ms
26,848 KB
testcase_15 RE -
testcase_16 AC 87 ms
27,360 KB
testcase_17 AC 88 ms
27,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
for i in range(0,N,2):
    j=i+1
    print("?",i,j,flush=True)
    x=int(input())

    if x==i:
        print("!",j,flush=True)
        break
    elif x==j:
        print("!",i,flush=True)
        break
else:
    print("!",N-1,flush=True)
0