結果

問題 No.1286 Stone Skipping
ユーザー 👑 KazunKazun
提出日時 2020-11-13 22:30:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 68,784 KB
最終ジャッジ日時 2024-07-23 09:54:23
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,460 KB
testcase_01 AC 36 ms
53,860 KB
testcase_02 AC 53 ms
66,452 KB
testcase_03 AC 39 ms
57,476 KB
testcase_04 AC 36 ms
52,724 KB
testcase_05 AC 39 ms
58,836 KB
testcase_06 AC 38 ms
57,444 KB
testcase_07 AC 36 ms
53,096 KB
testcase_08 AC 42 ms
59,104 KB
testcase_09 AC 43 ms
59,028 KB
testcase_10 AC 42 ms
59,176 KB
testcase_11 AC 42 ms
59,036 KB
testcase_12 AC 41 ms
58,824 KB
testcase_13 AC 54 ms
67,168 KB
testcase_14 AC 53 ms
68,784 KB
testcase_15 AC 52 ms
68,108 KB
testcase_16 AC 53 ms
66,572 KB
testcase_17 AC 54 ms
67,860 KB
testcase_18 AC 36 ms
52,872 KB
testcase_19 AC 36 ms
52,528 KB
testcase_20 AC 54 ms
66,956 KB
testcase_21 AC 55 ms
67,596 KB
testcase_22 AC 41 ms
59,472 KB
testcase_23 AC 47 ms
62,776 KB
testcase_24 AC 53 ms
67,480 KB
testcase_25 AC 52 ms
65,840 KB
testcase_26 AC 52 ms
66,940 KB
testcase_27 AC 51 ms
66,900 KB
testcase_28 AC 55 ms
67,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D=int(input())
N=D.bit_length()

T=[pow(2,i) for i in range(N-1,-1,-1)]

M=D
for k in range(1,N+1):
    E=[sum(T[i:i+k]) for i in range(N)]

    S=0
    X=D

    for i in range(N):
        if E[i]<=X:
            X-=E[i]
            S+=pow(2,N-1-i)

    if X==0:
        M=min(M,S)
print(M)
0