結果

問題 No.2252 Find Zero
ユーザー shobonvipshobonvip
提出日時 2023-01-19 22:32:10
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 230 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 86,296 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-06-22 16:12:42
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 88 ms
69,676 KB
testcase_03 AC 95 ms
71,636 KB
testcase_04 AC 80 ms
69,380 KB
testcase_05 AC 75 ms
69,084 KB
testcase_06 AC 78 ms
70,220 KB
testcase_07 AC 78 ms
69,140 KB
testcase_08 AC 91 ms
70,280 KB
testcase_09 AC 97 ms
71,168 KB
testcase_10 AC 83 ms
68,684 KB
testcase_11 AC 80 ms
69,744 KB
testcase_12 RE -
testcase_13 AC 78 ms
69,716 KB
testcase_14 AC 79 ms
68,472 KB
testcase_15 RE -
testcase_16 AC 75 ms
68,812 KB
testcase_17 AC 77 ms
69,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
now = 0
while True:
	print(f"? {now} {now + 1}")
	x = int(input())
	if x == now:
		print(f"! {now + 1}")
		exit()
	if x == now + 1:
		print(f"! {now}")
		exit()
	if now == n-1:
		print(f"! {n}")
		exit()
	now += 2
0