結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,756 KB
testcase_01 AC 31 ms
52,312 KB
testcase_02 AC 34 ms
53,144 KB
testcase_03 AC 42 ms
62,964 KB
testcase_04 AC 43 ms
63,748 KB
testcase_05 AC 47 ms
65,216 KB
testcase_06 WA -
testcase_07 AC 51 ms
67,452 KB
testcase_08 AC 50 ms
69,144 KB
testcase_09 AC 52 ms
69,336 KB
testcase_10 AC 73 ms
76,876 KB
testcase_11 AC 76 ms
77,080 KB
testcase_12 AC 75 ms
77,072 KB
testcase_13 AC 70 ms
75,436 KB
testcase_14 WA -
testcase_15 AC 73 ms
76,816 KB
testcase_16 AC 73 ms
76,780 KB
testcase_17 AC 73 ms
77,324 KB
testcase_18 AC 78 ms
77,368 KB
testcase_19 AC 80 ms
77,580 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+1,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