結果

問題 No.2252 Find Zero
ユーザー hir355hir355
提出日時 2023-03-24 21:26:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 81,760 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:43:41
合計ジャッジ時間 2,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
70,388 KB
testcase_01 AC 123 ms
81,760 KB
testcase_02 AC 81 ms
69,560 KB
testcase_03 AC 99 ms
75,976 KB
testcase_04 AC 82 ms
69,692 KB
testcase_05 AC 81 ms
69,292 KB
testcase_06 AC 80 ms
70,180 KB
testcase_07 AC 79 ms
70,096 KB
testcase_08 AC 92 ms
70,768 KB
testcase_09 AC 107 ms
76,700 KB
testcase_10 AC 80 ms
69,172 KB
testcase_11 AC 82 ms
70,088 KB
testcase_12 AC 78 ms
69,052 KB
testcase_13 AC 80 ms
69,132 KB
testcase_14 AC 78 ms
69,524 KB
testcase_15 AC 81 ms
69,276 KB
testcase_16 AC 82 ms
69,748 KB
testcase_17 AC 85 ms
70,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(0, n - 1, 2):
    print('?', i, i + 1)
    x = int(input())
    if i == x:
        print('!', i + 1)
        break
    elif i + 1 == x:
        print('!', i)
        break
else:
    print('!', n - 1)
0