結果

問題 No.1286 Stone Skipping
ユーザー KudeKude
提出日時 2020-11-21 12:05:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 65,648 KB
最終ジャッジ日時 2024-07-23 15:30:10
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,824 KB
testcase_01 AC 41 ms
57,932 KB
testcase_02 AC 47 ms
63,708 KB
testcase_03 AC 46 ms
61,408 KB
testcase_04 AC 46 ms
61,688 KB
testcase_05 AC 46 ms
61,688 KB
testcase_06 AC 45 ms
60,872 KB
testcase_07 AC 47 ms
62,172 KB
testcase_08 AC 45 ms
62,128 KB
testcase_09 AC 46 ms
62,900 KB
testcase_10 AC 46 ms
63,212 KB
testcase_11 AC 45 ms
62,292 KB
testcase_12 AC 45 ms
62,484 KB
testcase_13 AC 48 ms
65,096 KB
testcase_14 AC 46 ms
64,260 KB
testcase_15 AC 47 ms
64,636 KB
testcase_16 AC 47 ms
65,424 KB
testcase_17 AC 47 ms
64,780 KB
testcase_18 AC 41 ms
58,280 KB
testcase_19 AC 41 ms
57,608 KB
testcase_20 AC 48 ms
64,324 KB
testcase_21 AC 48 ms
65,632 KB
testcase_22 AC 46 ms
63,228 KB
testcase_23 AC 46 ms
62,928 KB
testcase_24 AC 46 ms
65,648 KB
testcase_25 AC 47 ms
65,104 KB
testcase_26 AC 47 ms
64,940 KB
testcase_27 AC 47 ms
64,652 KB
testcase_28 AC 47 ms
64,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
def dist(x, i):
    res = x
    for _ in range(i):
        x //= 2
        res += x
    return res
ans = d
for i in range(100):
    l, r = 0, d
    while r - l > 1:
        c = (l + r) // 2
        if dist(c, i) >= d:
            r = c
        else:
            l = c
    if dist(r, i) == d:
        ans = min(ans, r)
print(ans)
0