結果

問題 No.1947 質より種類数
ユーザー とりゐとりゐ
提出日時 2022-05-20 21:52:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-20 07:56:02
合計ジャッジ時間 5,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 46 ms
62,592 KB
testcase_05 AC 50 ms
63,488 KB
testcase_06 AC 53 ms
64,384 KB
testcase_07 AC 50 ms
63,488 KB
testcase_08 AC 50 ms
63,488 KB
testcase_09 AC 58 ms
64,384 KB
testcase_10 AC 55 ms
63,744 KB
testcase_11 AC 65 ms
68,992 KB
testcase_12 AC 61 ms
65,792 KB
testcase_13 AC 51 ms
63,616 KB
testcase_14 AC 161 ms
76,416 KB
testcase_15 AC 108 ms
76,672 KB
testcase_16 AC 188 ms
76,336 KB
testcase_17 AC 231 ms
71,552 KB
testcase_18 AC 358 ms
76,452 KB
testcase_19 AC 228 ms
76,328 KB
testcase_20 AC 188 ms
76,324 KB
testcase_21 AC 281 ms
76,160 KB
testcase_22 AC 67 ms
70,656 KB
testcase_23 AC 163 ms
70,784 KB
testcase_24 AC 54 ms
65,664 KB
testcase_25 AC 48 ms
62,336 KB
testcase_26 AC 47 ms
62,080 KB
testcase_27 AC 48 ms
61,824 KB
testcase_28 AC 49 ms
63,104 KB
testcase_29 AC 219 ms
69,120 KB
testcase_30 AC 173 ms
69,120 KB
testcase_31 AC 35 ms
51,584 KB
testcase_32 AC 35 ms
51,712 KB
testcase_33 AC 43 ms
60,160 KB
testcase_34 AC 956 ms
76,312 KB
testcase_35 AC 231 ms
67,456 KB
testcase_36 AC 166 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,V,c=map(int,input().split())
dp=[-10**9]*(V+1)
dp[0]=0
for _ in range(n):
  v,w=map(int,input().split())
  for s in range(v):
    mx=-10**9
    for i in range(s,V+1,v):
      mx,dp[i]=max(dp[i]+c,mx),max(dp[i],mx)
      mx+=w
print(max(dp))
0