結果

問題 No.2753 鳩の巣原理
ユーザー shobonvipshobonvip
提出日時 2024-05-10 22:09:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 70,332 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:09:43
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
68,720 KB
testcase_01 AC 51 ms
69,224 KB
testcase_02 AC 52 ms
69,128 KB
testcase_03 AC 52 ms
69,152 KB
testcase_04 AC 54 ms
68,860 KB
testcase_05 AC 51 ms
70,332 KB
testcase_06 AC 55 ms
68,720 KB
testcase_07 AC 53 ms
69,452 KB
testcase_08 AC 58 ms
69,300 KB
testcase_09 AC 53 ms
68,660 KB
testcase_10 AC 53 ms
68,752 KB
testcase_11 AC 53 ms
69,368 KB
testcase_12 AC 52 ms
69,376 KB
testcase_13 AC 54 ms
69,100 KB
testcase_14 AC 55 ms
68,876 KB
testcase_15 AC 51 ms
68,904 KB
testcase_16 AC 51 ms
69,956 KB
testcase_17 AC 52 ms
68,108 KB
testcase_18 AC 55 ms
68,680 KB
testcase_19 AC 51 ms
68,880 KB
testcase_20 AC 54 ms
69,564 KB
testcase_21 AC 52 ms
69,508 KB
testcase_22 AC 57 ms
68,608 KB
testcase_23 AC 54 ms
68,700 KB
testcase_24 AC 55 ms
68,964 KB
testcase_25 AC 52 ms
69,216 KB
testcase_26 AC 52 ms
69,012 KB
testcase_27 AC 53 ms
69,168 KB
testcase_28 AC 54 ms
69,128 KB
testcase_29 AC 52 ms
70,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ub = n+1 #n # NG
lb = 0 #0 # OK
arub = n
arlb = 0
tim = 0
while ub - lb > 1:
	t = (ub + lb) // 2
	print(f"? {t}")
	tim += 1
	x = int(input())

	if arub - x < ub - t:
		lb = t
		arlb = x
	else:
		ub = t
		arub = x

assert tim <= 10
while tim < 10:
	print(f"? {1}")
	x = int(input())
	tim += 1

print("Yes",lb,lb+1)
0