結果

問題 No.2753 鳩の巣原理
ユーザー shobonvipshobonvip
提出日時 2024-05-10 22:03:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 71,148 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:04:02
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,604 KB
testcase_01 AC 58 ms
68,720 KB
testcase_02 AC 60 ms
69,184 KB
testcase_03 AC 62 ms
68,796 KB
testcase_04 AC 63 ms
69,780 KB
testcase_05 WA -
testcase_06 AC 59 ms
68,880 KB
testcase_07 AC 73 ms
68,804 KB
testcase_08 AC 64 ms
69,244 KB
testcase_09 AC 59 ms
69,460 KB
testcase_10 AC 59 ms
69,020 KB
testcase_11 AC 59 ms
68,496 KB
testcase_12 AC 59 ms
68,972 KB
testcase_13 WA -
testcase_14 AC 60 ms
69,332 KB
testcase_15 AC 58 ms
68,444 KB
testcase_16 WA -
testcase_17 AC 69 ms
70,340 KB
testcase_18 AC 65 ms
68,292 KB
testcase_19 AC 60 ms
69,160 KB
testcase_20 WA -
testcase_21 AC 58 ms
70,224 KB
testcase_22 AC 64 ms
69,696 KB
testcase_23 AC 59 ms
69,128 KB
testcase_24 AC 60 ms
69,208 KB
testcase_25 AC 59 ms
69,140 KB
testcase_26 AC 61 ms
68,428 KB
testcase_27 AC 60 ms
68,880 KB
testcase_28 AC 78 ms
69,680 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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())
	tim += 1

if lb == 0:
	print("No")
else:
	print("Yes",lb,lb+1)
0