結果
問題 | No.2329 Nafmo、イカサマをする |
ユーザー | Ayuna |
提出日時 | 2023-05-28 15:40:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 62,080 KB |
最終ジャッジ日時 | 2024-06-08 08:15:19 |
合計ジャッジ時間 | 3,045 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,456 KB |
testcase_01 | AC | 39 ms
52,224 KB |
testcase_02 | AC | 38 ms
51,456 KB |
testcase_03 | AC | 37 ms
51,968 KB |
testcase_04 | AC | 40 ms
51,840 KB |
testcase_05 | AC | 40 ms
51,456 KB |
testcase_06 | AC | 39 ms
51,968 KB |
testcase_07 | AC | 38 ms
51,456 KB |
testcase_08 | WA | - |
testcase_09 | AC | 38 ms
52,096 KB |
testcase_10 | AC | 39 ms
51,712 KB |
testcase_11 | AC | 37 ms
51,968 KB |
testcase_12 | WA | - |
testcase_13 | AC | 39 ms
51,968 KB |
testcase_14 | AC | 39 ms
51,840 KB |
testcase_15 | AC | 39 ms
52,224 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 40 ms
52,352 KB |
testcase_25 | WA | - |
testcase_26 | AC | 38 ms
52,224 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
51,968 KB |
testcase_32 | AC | 40 ms
52,096 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
n, m, k = map(int, input().split()) a = list(map(int, input().split())) dp = [[0 for _ in range(k + 1)] for _ in range(n + 1)] a.sort() #dp[i][j] = i番目までのカードを見て、j枚選んでいるM以下の最大値 for i in range(1, n + 1): for j in range(k + 1): for l in range(0, k - j + 1): if dp[i - 1][j] + a[i - 1] * l > m: continue dp[i][j + l] = max(dp[i][j + l], dp[i - 1][j] + a[i - 1] * l) ans = 0 for i in range(n + 1): for j in range(k + 1): if ans < dp[i][j]: ans = dp[i][j] print(ans)