結果

問題 No.1286 Stone Skipping
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-15 13:33:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-06-08 00:32:34
合計ジャッジ時間 2,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 AC 40 ms
57,216 KB
testcase_02 AC 45 ms
61,568 KB
testcase_03 AC 41 ms
58,368 KB
testcase_04 AC 41 ms
57,984 KB
testcase_05 AC 42 ms
58,368 KB
testcase_06 AC 41 ms
58,368 KB
testcase_07 AC 41 ms
57,984 KB
testcase_08 AC 44 ms
60,800 KB
testcase_09 AC 46 ms
60,928 KB
testcase_10 AC 46 ms
61,696 KB
testcase_11 AC 44 ms
60,928 KB
testcase_12 AC 43 ms
60,928 KB
testcase_13 AC 44 ms
62,080 KB
testcase_14 AC 44 ms
61,952 KB
testcase_15 AC 45 ms
61,952 KB
testcase_16 AC 44 ms
62,464 KB
testcase_17 AC 45 ms
62,336 KB
testcase_18 AC 38 ms
56,832 KB
testcase_19 AC 39 ms
56,960 KB
testcase_20 AC 44 ms
62,464 KB
testcase_21 AC 44 ms
62,080 KB
testcase_22 AC 44 ms
61,056 KB
testcase_23 AC 46 ms
61,440 KB
testcase_24 AC 44 ms
62,080 KB
testcase_25 AC 46 ms
61,824 KB
testcase_26 AC 45 ms
62,464 KB
testcase_27 AC 45 ms
61,824 KB
testcase_28 AC 46 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d=int(input())
"""
最後の飛距離は1
最後から2回目は2,3
最後から3回目は4,5,6,7
最後から4回目は8~15
最後からi回目は[2**(i-1),2**2)
答えはd/2以上d以下
跳ねる回数で場合分け
跳ねる回数最大60回ぐらい
"""
ans=d
for i in range(1,64):
	def func(x):
		# x始まりでi回跳ねる場合の飛距離
		tmp=0
		for _ in range(i):
			tmp+=x
			x//=2
		return tmp
	l,r=0,d
	while r-l>1:
		x=(l+r)//2
		if d<func(x):
			l,r=l,x
		else:
			l,r=x,r
	if func(l)==d:
		ans=min(ans,l)

print(ans)
0