結果

問題 No.2252 Find Zero
ユーザー ねしんねしん
提出日時 2024-07-28 23:04:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 169 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,704 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-07-28 23:04:39
合計ジャッジ時間 4,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 100 ms
68,448 KB
testcase_03 AC 118 ms
75,744 KB
testcase_04 AC 97 ms
68,952 KB
testcase_05 AC 93 ms
68,960 KB
testcase_06 AC 94 ms
68,824 KB
testcase_07 AC 95 ms
68,320 KB
testcase_08 AC 108 ms
69,472 KB
testcase_09 AC 118 ms
76,664 KB
testcase_10 AC 92 ms
68,264 KB
testcase_11 AC 107 ms
68,568 KB
testcase_12 RE -
testcase_13 AC 91 ms
68,312 KB
testcase_14 AC 91 ms
68,824 KB
testcase_15 RE -
testcase_16 AC 94 ms
68,696 KB
testcase_17 AC 93 ms
68,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(0,N,2):
	print("?",i,i+1,flush=True)
	c=int(input())
	if c==i:
		print("!",i+1)
		exit()
	elif c==i+1:
		print("!",i)
		exit()
print("!",N)
0