結果

問題 No.617 Nafmo、買い出しに行く
ユーザー TakoKurageTakoKurage
提出日時 2020-03-02 23:37:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,384 KB
最終ジャッジ日時 2024-10-13 21:23:25
合計ジャッジ時間 9,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
58,496 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 78 ms
72,960 KB
testcase_03 AC 124 ms
75,776 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 180 ms
75,648 KB
testcase_06 AC 818 ms
76,288 KB
testcase_07 AC 825 ms
76,160 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 824 ms
76,032 KB
testcase_11 AC 807 ms
76,032 KB
testcase_12 AC 804 ms
75,904 KB
testcase_13 AC 792 ms
76,384 KB
testcase_14 AC 772 ms
76,288 KB
testcase_15 AC 784 ms
76,032 KB
testcase_16 AC 813 ms
76,288 KB
testcase_17 AC 793 ms
76,032 KB
testcase_18 AC 37 ms
51,712 KB
testcase_19 AC 39 ms
51,200 KB
testcase_20 AC 37 ms
51,840 KB
testcase_21 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, *A = map(int, open(0).read().split())

ans = 0
for i in range(2 ** N):
    t = sum(A[j] for j in range(N) if (i >> j) & 1)
    if t <= K:
        ans = max(ans, t)

print(ans)
0