結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,592 KB
testcase_01 AC 39 ms
52,336 KB
testcase_02 AC 45 ms
59,752 KB
testcase_03 AC 54 ms
69,740 KB
testcase_04 AC 39 ms
53,816 KB
testcase_05 AC 75 ms
89,192 KB
testcase_06 AC 39 ms
53,480 KB
testcase_07 AC 39 ms
53,356 KB
testcase_08 RE -
testcase_09 AC 40 ms
52,316 KB
testcase_10 AC 120 ms
124,696 KB
testcase_11 AC 110 ms
117,464 KB
testcase_12 AC 100 ms
106,600 KB
testcase_13 AC 114 ms
120,012 KB
testcase_14 AC 114 ms
122,120 KB
testcase_15 RE -
testcase_16 AC 78 ms
88,600 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 39 ms
52,548 KB
testcase_20 AC 38 ms
53,372 KB
testcase_21 AC 39 ms
53,372 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