結果

問題 No.1947 質より種類数
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-05-20 22:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-09-20 09:15:59
合計ジャッジ時間 6,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 66 ms
68,480 KB
testcase_05 AC 59 ms
67,328 KB
testcase_06 AC 64 ms
69,376 KB
testcase_07 AC 61 ms
67,840 KB
testcase_08 AC 61 ms
67,712 KB
testcase_09 AC 73 ms
68,096 KB
testcase_10 AC 71 ms
68,736 KB
testcase_11 AC 104 ms
73,600 KB
testcase_12 AC 80 ms
69,120 KB
testcase_13 AC 68 ms
68,992 KB
testcase_14 AC 212 ms
71,808 KB
testcase_15 AC 121 ms
71,936 KB
testcase_16 AC 307 ms
72,320 KB
testcase_17 AC 307 ms
72,704 KB
testcase_18 AC 544 ms
72,704 KB
testcase_19 AC 483 ms
72,704 KB
testcase_20 AC 375 ms
73,728 KB
testcase_21 AC 453 ms
71,936 KB
testcase_22 AC 81 ms
70,528 KB
testcase_23 AC 234 ms
71,296 KB
testcase_24 AC 62 ms
68,352 KB
testcase_25 AC 59 ms
67,328 KB
testcase_26 AC 58 ms
65,920 KB
testcase_27 AC 62 ms
67,328 KB
testcase_28 AC 67 ms
70,232 KB
testcase_29 AC 481 ms
67,200 KB
testcase_30 AC 307 ms
66,304 KB
testcase_31 AC 36 ms
51,712 KB
testcase_32 AC 36 ms
51,712 KB
testcase_33 AC 45 ms
61,312 KB
testcase_34 AC 57 ms
68,480 KB
testcase_35 AC 46 ms
62,848 KB
testcase_36 AC 301 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

N,V,C = map(int,stdin.readline().split())

dp = [float("-inf")] * (V+1)
dp[0] = 0

for i in range(N):

    v,w = map(int,stdin.readline().split())
    for i in range(V-v,-1,-1):

        dp[i+v] = max(dp[i+v] , dp[i] + C + w)

    for i in range(V-v+1):
        dp[i+v] = max(dp[i+v] , dp[i] + w)

print (max(dp))
        
0