結果

問題 No.1286 Stone Skipping
ユーザー neterukunneterukun
提出日時 2020-11-13 21:53:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 65,668 KB
最終ジャッジ日時 2024-07-23 09:52:00
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,492 KB
testcase_01 AC 42 ms
60,200 KB
testcase_02 AC 49 ms
65,324 KB
testcase_03 AC 51 ms
64,832 KB
testcase_04 AC 44 ms
62,008 KB
testcase_05 AC 45 ms
61,460 KB
testcase_06 AC 45 ms
61,584 KB
testcase_07 AC 45 ms
62,164 KB
testcase_08 AC 46 ms
62,672 KB
testcase_09 AC 48 ms
63,288 KB
testcase_10 AC 47 ms
63,308 KB
testcase_11 AC 47 ms
63,400 KB
testcase_12 AC 46 ms
63,360 KB
testcase_13 AC 47 ms
64,660 KB
testcase_14 AC 48 ms
64,988 KB
testcase_15 AC 47 ms
65,304 KB
testcase_16 AC 46 ms
64,836 KB
testcase_17 AC 46 ms
65,668 KB
testcase_18 AC 40 ms
58,236 KB
testcase_19 AC 40 ms
57,752 KB
testcase_20 AC 46 ms
64,792 KB
testcase_21 AC 46 ms
65,036 KB
testcase_22 AC 45 ms
63,008 KB
testcase_23 AC 46 ms
63,992 KB
testcase_24 AC 46 ms
65,332 KB
testcase_25 AC 46 ms
65,412 KB
testcase_26 AC 45 ms
65,404 KB
testcase_27 AC 47 ms
65,180 KB
testcase_28 AC 47 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())

def solve(mid, cnt):
    val = 0
    for i in range(cnt):
        val += mid
        mid >>= 1
    return val >= d, val

ans = d
for cnt in range(100):
    ok = d
    ng = 0
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if solve(mid, cnt)[0]:
            ok = mid
        else:
            ng = mid
    if solve(ok, cnt)[1] == d:
        ans = min(ok, ans)
print(ans)
0