結果

問題 No.1947 質より種類数
ユーザー ああいいああいい
提出日時 2022-05-20 23:55:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 339 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-09-20 10:21:25
合計ジャッジ時間 19,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,344 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 141 ms
71,424 KB
testcase_05 AC 132 ms
69,376 KB
testcase_06 AC 122 ms
69,504 KB
testcase_07 AC 131 ms
70,656 KB
testcase_08 AC 152 ms
71,680 KB
testcase_09 AC 242 ms
76,288 KB
testcase_10 AC 186 ms
75,776 KB
testcase_11 AC 260 ms
76,160 KB
testcase_12 AC 320 ms
75,776 KB
testcase_13 AC 121 ms
76,032 KB
testcase_14 AC 821 ms
77,564 KB
testcase_15 AC 465 ms
76,416 KB
testcase_16 AC 1,157 ms
78,336 KB
testcase_17 AC 837 ms
79,104 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 979 ms
79,232 KB
testcase_21 TLE -
testcase_22 AC 128 ms
76,032 KB
testcase_23 AC 564 ms
77,696 KB
testcase_24 AC 318 ms
74,368 KB
testcase_25 AC 247 ms
71,296 KB
testcase_26 AC 297 ms
66,688 KB
testcase_27 AC 212 ms
68,736 KB
testcase_28 AC 590 ms
70,656 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l = []
for _ in range(N):
    v,w = map(int,input().split())
    l.append((v,w))
dp = [0] * (V + 1)
for v,w in l:
    nx = dp.copy()
    for i in range(V + 1):
        for j in range(1,(V - i) // v + 1):
            nx[i + j * v] = max(nx[i + j * v],dp[i] + C + w * j)
        
    dp = nx
print(max(dp))
0