結果

問題 No.617 Nafmo、買い出しに行く
ユーザー ohanaohana
提出日時 2023-10-27 10:14:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 175,964 KB
最終ジャッジ日時 2024-09-25 12:57:24
合計ジャッジ時間 2,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,108 KB
testcase_01 AC 41 ms
52,028 KB
testcase_02 AC 43 ms
60,600 KB
testcase_03 AC 56 ms
74,236 KB
testcase_04 AC 38 ms
52,756 KB
testcase_05 AC 79 ms
97,280 KB
testcase_06 AC 38 ms
53,628 KB
testcase_07 AC 38 ms
53,224 KB
testcase_08 AC 39 ms
52,160 KB
testcase_09 AC 38 ms
53,112 KB
testcase_10 AC 150 ms
165,568 KB
testcase_11 AC 159 ms
171,900 KB
testcase_12 AC 136 ms
150,060 KB
testcase_13 AC 134 ms
151,204 KB
testcase_14 AC 160 ms
175,964 KB
testcase_15 AC 37 ms
52,860 KB
testcase_16 AC 39 ms
52,600 KB
testcase_17 AC 39 ms
52,524 KB
testcase_18 AC 39 ms
52,468 KB
testcase_19 AC 37 ms
52,372 KB
testcase_20 AC 37 ms
52,080 KB
testcase_21 AC 38 ms
52,688 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