結果

問題 No.1286 Stone Skipping
ユーザー NoneNone
提出日時 2021-05-01 07:17:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-19 09:16:47
合計ジャッジ時間 3,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,728 KB
testcase_01 AC 68 ms
73,984 KB
testcase_02 AC 75 ms
75,776 KB
testcase_03 AC 72 ms
75,776 KB
testcase_04 AC 76 ms
75,776 KB
testcase_05 AC 74 ms
75,648 KB
testcase_06 AC 72 ms
75,392 KB
testcase_07 AC 71 ms
75,904 KB
testcase_08 AC 70 ms
75,776 KB
testcase_09 AC 69 ms
75,776 KB
testcase_10 AC 68 ms
75,776 KB
testcase_11 AC 68 ms
75,648 KB
testcase_12 AC 68 ms
75,392 KB
testcase_13 AC 72 ms
75,776 KB
testcase_14 AC 69 ms
75,648 KB
testcase_15 AC 64 ms
75,392 KB
testcase_16 AC 66 ms
75,904 KB
testcase_17 AC 65 ms
75,648 KB
testcase_18 AC 64 ms
73,088 KB
testcase_19 AC 67 ms
73,600 KB
testcase_20 AC 71 ms
75,776 KB
testcase_21 AC 65 ms
75,648 KB
testcase_22 AC 65 ms
75,392 KB
testcase_23 AC 69 ms
75,776 KB
testcase_24 AC 67 ms
75,648 KB
testcase_25 AC 67 ms
75,776 KB
testcase_26 AC 69 ms
76,160 KB
testcase_27 AC 69 ms
75,776 KB
testcase_28 AC 64 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok, ng, test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if test(mid):
            ok = mid
        else:
            ng = mid
    return ok

def f(x):
    _res=0
    for _ in range(k):
        _res+=x
        x//=2
    return _res

##############################################################

import sys
input = sys.stdin.readline

def test(x):
    return f(x)<=D

D=int(input())

res=float("inf")
for k in range(1,60):
    tmp=binary_search_int(0,10**19,test)
    if f(tmp)==D:
        res=min(tmp,res)

print(res)
0