結果

問題 No.555 世界史のレポート
ユーザー H3PO4H3PO4
提出日時 2020-09-23 08:55:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,712 KB
最終ジャッジ日時 2024-06-27 13:44:37
合計ジャッジ時間 16,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
43,812 KB
testcase_01 AC 498 ms
43,688 KB
testcase_02 AC 501 ms
44,076 KB
testcase_03 AC 503 ms
44,200 KB
testcase_04 AC 511 ms
43,816 KB
testcase_05 AC 518 ms
43,656 KB
testcase_06 AC 503 ms
44,068 KB
testcase_07 AC 508 ms
44,144 KB
testcase_08 AC 510 ms
44,196 KB
testcase_09 AC 506 ms
43,944 KB
testcase_10 AC 797 ms
44,556 KB
testcase_11 AC 759 ms
44,320 KB
testcase_12 AC 734 ms
44,708 KB
testcase_13 AC 702 ms
44,712 KB
testcase_14 AC 748 ms
44,640 KB
testcase_15 AC 752 ms
44,580 KB
testcase_16 AC 728 ms
44,576 KB
testcase_17 AC 749 ms
44,324 KB
testcase_18 AC 760 ms
44,712 KB
testcase_19 AC 830 ms
44,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
C, V = map(int, input().split())
MAX = 10 ** 8

dp = np.full(2 * N, MAX)
dp[1] = 0
for i in range(1, N):
    np.minimum(dp[i * 2::i], dp[i] + C + V * np.arange(1, (2 * N - 1) // i), out=dp[i * 2::i])
print(dp[N:].min())
0