結果

問題 No.2753 鳩の巣原理
ユーザー shobonvipshobonvip
提出日時 2024-05-10 22:03:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 293 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,036 KB
平均クエリ数 7.73
最終ジャッジ日時 2024-05-10 22:03:47
合計ジャッジ時間 7,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 59 ms
68,816 KB
testcase_23 AC 59 ms
69,612 KB
testcase_24 AC 59 ms
68,976 KB
testcase_25 AC 62 ms
69,108 KB
testcase_26 AC 72 ms
70,108 KB
testcase_27 AC 60 ms
69,368 KB
testcase_28 AC 61 ms
68,692 KB
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# a[i] = i
n = int(input())

ub = n # NG
lb = 0 # OK
tim = 0
while ub - lb > 1:
	t = (ub + lb) // 2
	print(f"? {t}")
	tim += 1
	x = int(input())
	if x == t:
		lb = t
	else:
		ub = t
while tim<10:
	print(f"? {1}")
	x = int(input())
	tmp += 1
if lb == 0:
	print("No")
else:
	print("Yes",lb,lb+1)
0