結果

問題 No.1286 Stone Skipping
ユーザー O2MTO2MT
提出日時 2020-11-18 00:32:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 62,320 KB
最終ジャッジ日時 2024-07-23 09:59:21
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,816 KB
testcase_01 AC 42 ms
59,312 KB
testcase_02 AC 43 ms
61,416 KB
testcase_03 AC 42 ms
60,608 KB
testcase_04 AC 42 ms
59,628 KB
testcase_05 AC 42 ms
60,608 KB
testcase_06 AC 43 ms
60,504 KB
testcase_07 AC 42 ms
60,036 KB
testcase_08 AC 44 ms
61,488 KB
testcase_09 AC 43 ms
60,824 KB
testcase_10 AC 43 ms
60,852 KB
testcase_11 AC 43 ms
60,256 KB
testcase_12 AC 44 ms
60,168 KB
testcase_13 AC 45 ms
61,476 KB
testcase_14 AC 46 ms
62,320 KB
testcase_15 AC 44 ms
60,716 KB
testcase_16 AC 45 ms
60,392 KB
testcase_17 AC 47 ms
61,936 KB
testcase_18 AC 39 ms
58,192 KB
testcase_19 AC 41 ms
60,320 KB
testcase_20 AC 45 ms
60,584 KB
testcase_21 AC 45 ms
61,584 KB
testcase_22 AC 43 ms
60,052 KB
testcase_23 AC 45 ms
61,772 KB
testcase_24 AC 45 ms
60,940 KB
testcase_25 AC 44 ms
60,352 KB
testcase_26 AC 44 ms
60,004 KB
testcase_27 AC 43 ms
60,644 KB
testcase_28 AC 44 ms
61,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
K = 64
ans = D
for k in range(1,K+1):
    high = D
    low = 0
    while abs(high - low) > 1:
        mid = (high+low)//2
        dist = 0
        x = mid
        for n in range(k):
            dist += x
            x //= 2
        if dist >= D:
            high = mid
        else:
            low = mid
    v = 0
    x = high
    for i in range(k):
        v += x
        x //= 2
    if (v == D):
        ans = high
print(ans)
0