結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,036 KB
testcase_01 AC 64 ms
70,564 KB
testcase_02 AC 62 ms
68,800 KB
testcase_03 AC 61 ms
69,052 KB
testcase_04 AC 61 ms
69,188 KB
testcase_05 AC 60 ms
69,684 KB
testcase_06 AC 61 ms
69,084 KB
testcase_07 AC 60 ms
68,664 KB
testcase_08 AC 60 ms
69,736 KB
testcase_09 AC 58 ms
69,380 KB
testcase_10 AC 60 ms
69,388 KB
testcase_11 AC 61 ms
69,816 KB
testcase_12 AC 61 ms
68,440 KB
testcase_13 AC 60 ms
68,636 KB
testcase_14 AC 60 ms
68,780 KB
testcase_15 AC 63 ms
69,756 KB
testcase_16 AC 61 ms
70,416 KB
testcase_17 AC 60 ms
69,420 KB
testcase_18 AC 60 ms
69,392 KB
testcase_19 AC 60 ms
68,852 KB
testcase_20 AC 60 ms
68,296 KB
testcase_21 AC 61 ms
70,344 KB
testcase_22 AC 61 ms
70,192 KB
testcase_23 AC 61 ms
68,544 KB
testcase_24 AC 63 ms
69,020 KB
testcase_25 AC 62 ms
68,980 KB
testcase_26 AC 64 ms
69,636 KB
testcase_27 AC 63 ms
68,688 KB
testcase_28 AC 62 ms
69,892 KB
testcase_29 AC 65 ms
69,392 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