結果

問題 No.555 世界史のレポート
ユーザー togetogehattogetogehat
提出日時 2018-08-19 23:28:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-11-21 22:20:20
合計ジャッジ時間 8,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 34 ms
10,496 KB
testcase_07 AC 36 ms
10,752 KB
testcase_08 AC 37 ms
10,496 KB
testcase_09 AC 38 ms
10,624 KB
testcase_10 AC 593 ms
13,568 KB
testcase_11 AC 668 ms
13,824 KB
testcase_12 AC 587 ms
13,440 KB
testcase_13 AC 508 ms
13,184 KB
testcase_14 AC 664 ms
13,952 KB
testcase_15 AC 652 ms
13,824 KB
testcase_16 AC 557 ms
13,312 KB
testcase_17 AC 609 ms
13,696 KB
testcase_18 AC 691 ms
13,952 KB
testcase_19 AC 838 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+1):
    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