結果

問題 No.1286 Stone Skipping
ユーザー ntudantuda
提出日時 2021-09-12 22:32:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-06-24 18:36:37
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,368 KB
testcase_01 AC 41 ms
58,368 KB
testcase_02 AC 45 ms
62,464 KB
testcase_03 AC 41 ms
59,392 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 41 ms
60,032 KB
testcase_06 AC 41 ms
60,032 KB
testcase_07 AC 41 ms
59,392 KB
testcase_08 AC 44 ms
61,440 KB
testcase_09 AC 45 ms
61,568 KB
testcase_10 AC 44 ms
61,440 KB
testcase_11 AC 44 ms
61,568 KB
testcase_12 AC 44 ms
61,440 KB
testcase_13 AC 47 ms
63,104 KB
testcase_14 AC 46 ms
63,360 KB
testcase_15 AC 46 ms
62,976 KB
testcase_16 AC 47 ms
62,848 KB
testcase_17 AC 47 ms
62,976 KB
testcase_18 AC 44 ms
61,056 KB
testcase_19 AC 40 ms
58,240 KB
testcase_20 AC 46 ms
62,848 KB
testcase_21 AC 46 ms
63,488 KB
testcase_22 AC 45 ms
61,952 KB
testcase_23 AC 46 ms
61,952 KB
testcase_24 AC 46 ms
63,360 KB
testcase_25 AC 45 ms
62,720 KB
testcase_26 AC 46 ms
62,720 KB
testcase_27 AC 45 ms
63,232 KB
testcase_28 AC 46 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 10 ** 18 + 1
D = int(input())

def check(d,k):
    dist = 0
    for i in range(k):
        dist += d
        d //= 2
    return dist <= D

def search(k,d):
    lb = 0
    ub = d + 1
    while ub - lb > 1:
        mid = (ub + lb) // 2
        if check(mid,k):
            lb = mid
        else:
            ub = mid
    return lb

for i in range(1,65):
    d = search(i,D)
    d1 = 0
    d2 = d
    for j in range(i):
        d1 += d2
        d2 //= 2
    if d1 == D:
        ans = min(ans,d)
print(ans)
0