結果

問題 No.555 世界史のレポート
ユーザー 👑 rin204rin204
提出日時 2022-07-09 16:05:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 66,268 KB
最終ジャッジ日時 2024-06-09 22:44:11
合計ジャッジ時間 2,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,888 KB
testcase_01 AC 33 ms
53,076 KB
testcase_02 AC 33 ms
52,880 KB
testcase_03 AC 39 ms
59,048 KB
testcase_04 AC 37 ms
59,076 KB
testcase_05 AC 37 ms
59,652 KB
testcase_06 AC 39 ms
61,196 KB
testcase_07 AC 39 ms
61,684 KB
testcase_08 AC 39 ms
61,300 KB
testcase_09 AC 44 ms
60,720 KB
testcase_10 AC 48 ms
65,712 KB
testcase_11 AC 48 ms
65,776 KB
testcase_12 AC 47 ms
65,116 KB
testcase_13 AC 46 ms
64,664 KB
testcase_14 AC 47 ms
65,944 KB
testcase_15 AC 48 ms
64,396 KB
testcase_16 AC 52 ms
66,268 KB
testcase_17 AC 47 ms
65,984 KB
testcase_18 AC 49 ms
65,176 KB
testcase_19 AC 52 ms
66,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c, v = map(int, input().split())
dp = [1 << 30] * (n + 1)
dp[1] = 0
for i in range(1, n + 1):
    cost = c + dp[i]
    for j in range(2 * i, n + 1, i):
        cost += v
        dp[j] = min(dp[j], cost)
    dp[-1] = min(dp[-1], cost + v)
print(dp[-1])
0