結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 👑 yumechiyumechi
提出日時 2017-12-23 04:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,360 KB
最終ジャッジ日時 2024-05-09 21:13:50
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,224 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 40 ms
59,136 KB
testcase_03 AC 48 ms
70,272 KB
testcase_04 AC 31 ms
52,096 KB
testcase_05 AC 61 ms
89,344 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 31 ms
51,584 KB
testcase_08 AC 30 ms
52,224 KB
testcase_09 AC 30 ms
51,712 KB
testcase_10 AC 99 ms
127,360 KB
testcase_11 AC 99 ms
119,552 KB
testcase_12 AC 84 ms
107,136 KB
testcase_13 AC 95 ms
120,832 KB
testcase_14 AC 95 ms
123,648 KB
testcase_15 AC 64 ms
87,680 KB
testcase_16 AC 65 ms
87,680 KB
testcase_17 AC 81 ms
108,032 KB
testcase_18 AC 32 ms
51,712 KB
testcase_19 AC 31 ms
51,712 KB
testcase_20 AC 31 ms
51,840 KB
testcase_21 AC 30 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
al = sorted([int(input()) for _ in range(n)])
dp = set()
for a in al:
  for d in set(dp):
    dp.add(a + d)
  dp.add(a)
print(max([a for a in dp if a <= k] + [0]))
0