結果

問題 No.555 世界史のレポート
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-28 06:44:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 77,996 KB
最終ジャッジ日時 2024-06-02 01:22:46
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 38 ms
53,120 KB
testcase_03 AC 49 ms
64,256 KB
testcase_04 AC 54 ms
65,152 KB
testcase_05 AC 50 ms
66,560 KB
testcase_06 AC 53 ms
67,328 KB
testcase_07 AC 54 ms
67,968 KB
testcase_08 AC 54 ms
68,608 KB
testcase_09 AC 56 ms
69,504 KB
testcase_10 AC 79 ms
77,540 KB
testcase_11 AC 82 ms
77,312 KB
testcase_12 AC 79 ms
77,696 KB
testcase_13 AC 77 ms
77,248 KB
testcase_14 AC 75 ms
77,440 KB
testcase_15 AC 77 ms
77,312 KB
testcase_16 AC 76 ms
77,568 KB
testcase_17 AC 79 ms
77,312 KB
testcase_18 AC 83 ms
77,332 KB
testcase_19 AC 82 ms
77,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C,V = map(int,input().split())

INF = (1<<30)

dp = [INF]*(N+2)
def f(x):
    return min(x,N+1)

dp[1]=0
for i in range(1,N+1):
    
    for j in range(2*i,N+i,i):
        dp[f(j)] = min(dp[f(j)],dp[i] + (j-i)//i*V + C)
    
    cnt = 1
    j = i
    while j<N:
        dp[f(2*j)] = min(dp[f(2*j)],dp[i]+cnt*(C+V))
        cnt += 1
        j *= 2
        
ans = min(dp[N],dp[N+1])
print(ans)
    
0