結果

問題 No.555 世界史のレポート
ユーザー pluto77pluto77
提出日時 2018-02-22 13:29:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-25 03:05:24
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 15 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 15 ms
6,940 KB
testcase_10 AC 212 ms
9,856 KB
testcase_11 AC 236 ms
10,240 KB
testcase_12 AC 207 ms
9,856 KB
testcase_13 AC 183 ms
9,472 KB
testcase_14 AC 226 ms
10,112 KB
testcase_15 AC 231 ms
10,112 KB
testcase_16 AC 198 ms
9,600 KB
testcase_17 AC 217 ms
9,984 KB
testcase_18 AC 237 ms
10,240 KB
testcase_19 AC 302 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki555

n=int(raw_input())
c,v=map(int,raw_input().split())
dp=[float('inf') for i in xrange(2*n)]
dp[1]=0
for i in xrange(1,n):
 k=dp[i]+c+v
 idx=i
 while idx<n:
  idx+=i
  dp[idx]=min(dp[idx],k)
  k+=v
res=float('inf')
for i in xrange(n,2*n):
 res=min(res,dp[i])
print res
0