結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | naotoman |
提出日時 | 2018-07-15 20:29:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 342 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 33,312 KB |
最終ジャッジ日時 | 2024-11-07 02:21:56 |
合計ジャッジ時間 | 8,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
N, K = map(int, input().split()) seqA = [int(input()) for _ in range(N)] seqA.sort(reverse=True) dp = [False for _ in range(K+1)] dp[0] = True for a in seqA: for i in range(K, a-1, -1): if dp[i] and i+a<=K: dp[i+a] = True if a <= K: dp[a] = True for i in range(K+1): if dp[K-i]: print(K-i)