結果

問題 No.1286 Stone Skipping
ユーザー roarisroaris
提出日時 2020-11-14 00:57:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 64,648 KB
最終ジャッジ日時 2024-07-23 09:55:52
合計ジャッジ時間 2,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,620 KB
testcase_01 AC 40 ms
57,696 KB
testcase_02 AC 44 ms
62,264 KB
testcase_03 AC 41 ms
58,728 KB
testcase_04 AC 42 ms
59,660 KB
testcase_05 AC 40 ms
58,980 KB
testcase_06 AC 41 ms
58,852 KB
testcase_07 AC 42 ms
59,544 KB
testcase_08 AC 46 ms
62,184 KB
testcase_09 AC 44 ms
61,872 KB
testcase_10 AC 44 ms
61,860 KB
testcase_11 AC 44 ms
61,136 KB
testcase_12 AC 44 ms
61,512 KB
testcase_13 AC 44 ms
62,640 KB
testcase_14 AC 45 ms
63,068 KB
testcase_15 AC 45 ms
63,280 KB
testcase_16 AC 45 ms
62,444 KB
testcase_17 AC 46 ms
63,824 KB
testcase_18 AC 39 ms
57,728 KB
testcase_19 AC 41 ms
58,772 KB
testcase_20 AC 46 ms
62,408 KB
testcase_21 AC 46 ms
62,476 KB
testcase_22 AC 44 ms
62,012 KB
testcase_23 AC 44 ms
61,880 KB
testcase_24 AC 45 ms
62,536 KB
testcase_25 AC 46 ms
64,648 KB
testcase_26 AC 45 ms
62,948 KB
testcase_27 AC 45 ms
63,348 KB
testcase_28 AC 44 ms
62,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, c):
    res = 0
    
    for _ in range(c):
        res += x
        x //= 2
    
    return res
    
D = int(input())
ans = D

for i in range(1, 60):
    l, r = 1, D
    
    while l<=r:
        m = (l+r)//2
        
        if f(m, i)>=D:
            r = m-1
        else:
            l = m+1
    
    if f(l, i)==D:
        ans = min(ans, l)
    
print(ans)
0