結果

問題 No.617 Nafmo、買い出しに行く
ユーザー yumechiyumechi
提出日時 2017-12-23 04:51:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 190 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 123,904 KB
最終ジャッジ日時 2024-05-09 21:13:47
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 56 ms
59,776 KB
testcase_03 AC 59 ms
69,504 KB
testcase_04 AC 43 ms
51,840 KB
testcase_05 AC 74 ms
87,552 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 44 ms
52,224 KB
testcase_08 RE -
testcase_09 AC 43 ms
51,840 KB
testcase_10 AC 141 ms
123,904 KB
testcase_11 AC 119 ms
116,096 KB
testcase_12 AC 108 ms
104,576 KB
testcase_13 AC 114 ms
118,272 KB
testcase_14 AC 112 ms
120,704 KB
testcase_15 RE -
testcase_16 AC 76 ms
87,936 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 38 ms
51,456 KB
testcase_20 AC 38 ms
51,584 KB
testcase_21 AC 39 ms
51,828 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