結果

問題 No.617 Nafmo、買い出しに行く
ユーザー ohanaohana
提出日時 2023-10-27 10:14:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 175,944 KB
最終ジャッジ日時 2023-10-27 10:14:50
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,484 KB
testcase_01 AC 36 ms
53,484 KB
testcase_02 AC 84 ms
59,828 KB
testcase_03 AC 57 ms
75,492 KB
testcase_04 AC 41 ms
53,484 KB
testcase_05 AC 78 ms
97,344 KB
testcase_06 AC 38 ms
53,484 KB
testcase_07 AC 37 ms
53,484 KB
testcase_08 AC 37 ms
53,484 KB
testcase_09 AC 36 ms
53,484 KB
testcase_10 AC 151 ms
165,008 KB
testcase_11 AC 163 ms
171,460 KB
testcase_12 AC 130 ms
149,408 KB
testcase_13 AC 128 ms
150,204 KB
testcase_14 AC 154 ms
175,944 KB
testcase_15 AC 36 ms
53,484 KB
testcase_16 AC 38 ms
53,484 KB
testcase_17 AC 36 ms
53,484 KB
testcase_18 AC 36 ms
53,484 KB
testcase_19 AC 36 ms
53,484 KB
testcase_20 AC 37 ms
53,484 KB
testcase_21 AC 36 ms
53,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
S = set([0])
for i in range(n):
    a = int(input())
    T = set()
    for s in S:
        if s + a <= k:
            T.add(s + a)
    S = S | T
print(max(S))
0