結果

問題 No.1286 Stone Skipping
ユーザー chineristACchineristAC
提出日時 2020-11-13 22:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 62,580 KB
最終ジャッジ日時 2024-07-23 09:54:25
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,396 KB
testcase_01 AC 45 ms
58,964 KB
testcase_02 AC 48 ms
61,300 KB
testcase_03 AC 46 ms
60,756 KB
testcase_04 AC 46 ms
61,632 KB
testcase_05 AC 46 ms
61,048 KB
testcase_06 AC 45 ms
60,684 KB
testcase_07 AC 45 ms
60,164 KB
testcase_08 AC 47 ms
61,220 KB
testcase_09 AC 50 ms
61,244 KB
testcase_10 AC 47 ms
60,912 KB
testcase_11 AC 47 ms
60,704 KB
testcase_12 AC 48 ms
61,332 KB
testcase_13 AC 51 ms
62,416 KB
testcase_14 AC 50 ms
61,552 KB
testcase_15 AC 48 ms
61,868 KB
testcase_16 AC 51 ms
61,532 KB
testcase_17 AC 50 ms
62,580 KB
testcase_18 AC 41 ms
59,428 KB
testcase_19 AC 42 ms
59,364 KB
testcase_20 AC 49 ms
61,948 KB
testcase_21 AC 49 ms
61,872 KB
testcase_22 AC 46 ms
61,928 KB
testcase_23 AC 48 ms
61,484 KB
testcase_24 AC 50 ms
61,620 KB
testcase_25 AC 50 ms
61,168 KB
testcase_26 AC 49 ms
60,772 KB
testcase_27 AC 48 ms
61,144 KB
testcase_28 AC 49 ms
62,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

res = D

for i in range(1,60):
    start = 0
    end = D
    while end-start>1:
        mid = (end+start)//2
        tmp = 0
        for j in range(i+1):
            tmp += mid//(2**j)
        if tmp>=D:
            end = mid
        else:
            start = mid

    tmp = 0
    for j in range(i+1):
        tmp += end//(2**j)
    if tmp==D:
        res = min(res,end)

print(res)
0