結果
問題 | No.1947 質より種類数 |
ユーザー | titia |
提出日時 | 2022-05-20 22:20:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 339 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,948 KB |
最終ジャッジ日時 | 2024-09-20 08:33:02 |
合計ジャッジ時間 | 8,951 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,572 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,496 KB |
testcase_04 | AC | 177 ms
10,752 KB |
testcase_05 | AC | 138 ms
10,752 KB |
testcase_06 | AC | 142 ms
10,880 KB |
testcase_07 | AC | 167 ms
10,880 KB |
testcase_08 | AC | 183 ms
10,880 KB |
testcase_09 | AC | 682 ms
10,752 KB |
testcase_10 | AC | 462 ms
10,752 KB |
testcase_11 | AC | 1,610 ms
10,752 KB |
testcase_12 | AC | 1,049 ms
10,752 KB |
testcase_13 | AC | 406 ms
10,752 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import sys input = sys.stdin.readline N,V,C=map(int,input().split()) AB=[tuple(map(int,input().split())) for i in range(N)] DP=[0]*(V+1) for a,b in AB: for i in range(V,-1,-1): if i>=a: DP[i]=max(DP[i],DP[i-a]+b+C) for i in range(V+1): if i>=a: DP[i]=max(DP[i],DP[i-a]+b) print(max(DP))