結果

問題 No.555 世界史のレポート
ユーザー convexineqconvexineq
提出日時 2021-02-25 05:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 66,448 KB
最終ジャッジ日時 2024-09-25 04:52:25
合計ジャッジ時間 2,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 AC 35 ms
53,084 KB
testcase_02 AC 35 ms
52,124 KB
testcase_03 AC 41 ms
59,836 KB
testcase_04 AC 43 ms
59,792 KB
testcase_05 AC 43 ms
59,400 KB
testcase_06 AC 43 ms
60,620 KB
testcase_07 AC 44 ms
60,872 KB
testcase_08 AC 44 ms
60,180 KB
testcase_09 AC 44 ms
60,924 KB
testcase_10 AC 54 ms
65,764 KB
testcase_11 AC 54 ms
65,392 KB
testcase_12 AC 52 ms
66,448 KB
testcase_13 AC 50 ms
64,292 KB
testcase_14 AC 50 ms
65,776 KB
testcase_15 AC 53 ms
65,764 KB
testcase_16 AC 51 ms
64,320 KB
testcase_17 AC 51 ms
64,472 KB
testcase_18 AC 54 ms
64,496 KB
testcase_19 AC 54 ms
65,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,c,v = map(int,open(0).read().split())
ans = INF = 1<<60
dp = [INF]*(n)
dp[1] = 0
for i in range(1,n):
    r = dp[i] + c
    for j in range(i+i,n,i):
        r += v
        dp[j] = min(dp[j],r)
    ans = min(ans,r+v)
print(ans)
0