結果

問題 No.1286 Stone Skipping
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-16 20:03:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 65,196 KB
最終ジャッジ日時 2024-09-13 09:52:48
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,700 KB
testcase_01 AC 39 ms
52,524 KB
testcase_02 AC 49 ms
63,492 KB
testcase_03 AC 43 ms
60,108 KB
testcase_04 AC 41 ms
58,836 KB
testcase_05 AC 42 ms
59,296 KB
testcase_06 AC 42 ms
58,972 KB
testcase_07 AC 42 ms
58,844 KB
testcase_08 AC 46 ms
61,520 KB
testcase_09 AC 55 ms
65,196 KB
testcase_10 AC 46 ms
62,104 KB
testcase_11 AC 45 ms
62,252 KB
testcase_12 AC 46 ms
62,032 KB
testcase_13 AC 47 ms
63,788 KB
testcase_14 AC 46 ms
63,824 KB
testcase_15 AC 45 ms
63,104 KB
testcase_16 AC 46 ms
62,800 KB
testcase_17 AC 48 ms
63,532 KB
testcase_18 AC 37 ms
53,744 KB
testcase_19 AC 37 ms
53,136 KB
testcase_20 AC 47 ms
63,556 KB
testcase_21 AC 46 ms
63,200 KB
testcase_22 AC 48 ms
62,700 KB
testcase_23 AC 47 ms
62,988 KB
testcase_24 AC 47 ms
63,264 KB
testcase_25 AC 47 ms
63,428 KB
testcase_26 AC 47 ms
63,100 KB
testcase_27 AC 47 ms
64,348 KB
testcase_28 AC 47 ms
63,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d=int(input())
ans=d
for i in range(1,61):
  def func(x):
    tmp=0
    for _ in range(i):
      tmp+=x
      x//=2
      if x==0:break
    return tmp
  l,r=d//2,d
  while r-l>1:
    x=(l+r)//2
    t=func(x)
    if t==d:
      ans=min(ans,x)
      break
    elif d<t:
      l,r=l,x
    else:
      l,r=x,r
  if func(l)==d:ans=min(ans,l)
  if func(r)==d:ans=min(ans,r)
print(ans)
0