結果

問題 No.1286 Stone Skipping
ユーザー AEnAEn
提出日時 2022-11-24 21:57:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 65,592 KB
最終ジャッジ日時 2024-10-01 10:26:41
合計ジャッジ時間 2,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
64,388 KB
testcase_01 AC 45 ms
62,680 KB
testcase_02 AC 47 ms
64,416 KB
testcase_03 AC 47 ms
63,068 KB
testcase_04 AC 46 ms
63,000 KB
testcase_05 AC 46 ms
64,016 KB
testcase_06 AC 48 ms
63,704 KB
testcase_07 AC 51 ms
63,676 KB
testcase_08 AC 47 ms
63,412 KB
testcase_09 AC 47 ms
64,240 KB
testcase_10 AC 48 ms
64,296 KB
testcase_11 AC 48 ms
63,692 KB
testcase_12 AC 52 ms
63,500 KB
testcase_13 AC 49 ms
64,672 KB
testcase_14 AC 47 ms
64,096 KB
testcase_15 AC 47 ms
64,096 KB
testcase_16 AC 46 ms
64,288 KB
testcase_17 AC 46 ms
64,104 KB
testcase_18 AC 46 ms
63,040 KB
testcase_19 AC 45 ms
64,168 KB
testcase_20 AC 46 ms
64,036 KB
testcase_21 AC 46 ms
63,840 KB
testcase_22 AC 50 ms
65,592 KB
testcase_23 AC 47 ms
63,592 KB
testcase_24 AC 47 ms
64,084 KB
testcase_25 AC 47 ms
63,852 KB
testcase_26 AC 46 ms
63,352 KB
testcase_27 AC 46 ms
63,920 KB
testcase_28 AC 47 ms
64,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

def judge(l,cnt):
    m = l
    dis = l
    for i in range(cnt):
        dis += m//2
        m //= 2
    return dis
res = D
for i in range(1,61):
    ok, ng = 10**18+1,0
    while ok-ng>1:
        mid = (ok+ng)//2
        dis = judge(mid,i)
        if dis>=D:
            ok = mid
        else:
            ng = mid
    if judge(ok,i)==D:
        res = min(res,ok)
print(res)
0