結果

問題 No.2252 Find Zero
ユーザー shobonvipshobonvip
提出日時 2023-01-19 23:43:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,088 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-06-22 16:14:21
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
69,220 KB
testcase_01 AC 113 ms
77,088 KB
testcase_02 AC 79 ms
70,216 KB
testcase_03 AC 95 ms
70,944 KB
testcase_04 AC 79 ms
69,164 KB
testcase_05 AC 79 ms
69,524 KB
testcase_06 AC 78 ms
70,328 KB
testcase_07 AC 80 ms
69,220 KB
testcase_08 AC 91 ms
70,868 KB
testcase_09 AC 98 ms
70,728 KB
testcase_10 AC 80 ms
69,172 KB
testcase_11 AC 77 ms
68,928 KB
testcase_12 AC 77 ms
68,952 KB
testcase_13 AC 79 ms
69,496 KB
testcase_14 AC 78 ms
68,748 KB
testcase_15 AC 77 ms
69,128 KB
testcase_16 AC 78 ms
69,240 KB
testcase_17 AC 78 ms
70,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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