結果

問題 No.555 世界史のレポート
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-05 08:57:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-10-15 15:50:21
合計ジャッジ時間 1,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,328 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 45 ms
59,008 KB
testcase_04 AC 44 ms
58,880 KB
testcase_05 AC 48 ms
58,880 KB
testcase_06 AC 45 ms
59,008 KB
testcase_07 AC 45 ms
59,264 KB
testcase_08 AC 45 ms
59,904 KB
testcase_09 AC 50 ms
59,264 KB
testcase_10 AC 58 ms
62,720 KB
testcase_11 AC 57 ms
62,720 KB
testcase_12 AC 59 ms
62,848 KB
testcase_13 AC 55 ms
62,592 KB
testcase_14 AC 57 ms
62,848 KB
testcase_15 AC 63 ms
62,720 KB
testcase_16 AC 56 ms
62,336 KB
testcase_17 AC 58 ms
62,720 KB
testcase_18 AC 58 ms
62,720 KB
testcase_19 AC 60 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C, V = map(int, input().split())
inf = 10**18
dp = [inf] * (2 * N + 1)
dp[1] = 0

for i in range(1, N):
    x = i + i
    cost = C + V
    while True:
        dp[x] = min(dp[x], dp[i] + cost)
        if x > N:
            break
        x += i
        cost += V

ans = inf
for i in range(N, 2 * N + 1):
    ans = min(ans, dp[i])

print(ans)
0