結果

問題 No.2252 Find Zero
ユーザー ntudantuda
提出日時 2023-03-24 21:45:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,496 KB
平均クエリ数 117.44
最終ジャッジ日時 2024-09-18 16:56:56
合計ジャッジ時間 3,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
27,208 KB
testcase_01 AC 102 ms
26,696 KB
testcase_02 AC 75 ms
26,824 KB
testcase_03 AC 102 ms
26,824 KB
testcase_04 AC 76 ms
26,976 KB
testcase_05 WA -
testcase_06 AC 73 ms
27,304 KB
testcase_07 AC 78 ms
27,104 KB
testcase_08 AC 93 ms
27,104 KB
testcase_09 WA -
testcase_10 AC 72 ms
26,976 KB
testcase_11 AC 72 ms
27,104 KB
testcase_12 AC 73 ms
27,104 KB
testcase_13 AC 72 ms
27,232 KB
testcase_14 AC 70 ms
27,240 KB
testcase_15 AC 72 ms
26,872 KB
testcase_16 AC 71 ms
26,976 KB
testcase_17 AC 71 ms
26,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N//2):
    print("?",i,i+1)
    a = int(input())
    if a == i:
        print("!",i+1)
        break
    elif a == i + 1:
        print("!",i)
        break
else:
    print("!",N-1)
0