結果

問題 No.555 世界史のレポート
ユーザー togetogehattogetogehat
提出日時 2018-08-19 23:26:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-11-21 22:15:27
合計ジャッジ時間 7,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 35 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 35 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 569 ms
13,568 KB
testcase_11 AC 667 ms
14,080 KB
testcase_12 AC 598 ms
13,568 KB
testcase_13 AC 485 ms
13,184 KB
testcase_14 AC 622 ms
13,696 KB
testcase_15 AC 691 ms
13,952 KB
testcase_16 AC 548 ms
13,440 KB
testcase_17 AC 622 ms
13,696 KB
testcase_18 AC 625 ms
14,208 KB
testcase_19 AC 841 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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