結果

問題 No.1286 Stone Skipping
ユーザー shotoyooshotoyoo
提出日時 2020-11-13 21:42:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 65,996 KB
最終ジャッジ日時 2024-07-23 09:50:31
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,920 KB
testcase_01 AC 43 ms
58,644 KB
testcase_02 AC 48 ms
64,260 KB
testcase_03 AC 48 ms
62,732 KB
testcase_04 AC 46 ms
62,268 KB
testcase_05 AC 46 ms
61,728 KB
testcase_06 AC 46 ms
61,792 KB
testcase_07 AC 47 ms
61,256 KB
testcase_08 AC 46 ms
62,992 KB
testcase_09 AC 45 ms
62,896 KB
testcase_10 AC 47 ms
62,720 KB
testcase_11 AC 46 ms
63,208 KB
testcase_12 AC 46 ms
62,412 KB
testcase_13 AC 46 ms
65,228 KB
testcase_14 AC 48 ms
65,192 KB
testcase_15 AC 47 ms
64,920 KB
testcase_16 AC 48 ms
65,284 KB
testcase_17 AC 48 ms
65,932 KB
testcase_18 AC 40 ms
59,108 KB
testcase_19 AC 42 ms
58,504 KB
testcase_20 AC 48 ms
64,952 KB
testcase_21 AC 49 ms
65,520 KB
testcase_22 AC 48 ms
63,868 KB
testcase_23 AC 47 ms
64,448 KB
testcase_24 AC 47 ms
64,512 KB
testcase_25 AC 47 ms
65,152 KB
testcase_26 AC 47 ms
64,960 KB
testcase_27 AC 48 ms
65,556 KB
testcase_28 AC 48 ms
65,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


d = int(input())
ans = d
def sub(x, k):
    v = 0
    i = 0
    for i in range(k):
        v += x
        x //= 2
    return v>=d
def val(x, k):
    v = 0
    i = 0
    for i in range(k):
        v += x
        x //= 2
    return v
def proc(k):
    l = 0
    r = d
    while l<r-1:
        m = (l+r)//2
        if sub(m,k):
            r = m
        else:
            l = m
    if val(r,k)==d:
        return r
    else:
        return None
for v in range(1,100):
    tmp = proc(v)
#     print(tmp)
    if tmp is not None:
        ans = min(ans, tmp)
print(ans)
0