結果

問題 No.617 Nafmo、買い出しに行く
ユーザー kichirb3kichirb3
提出日時 2018-03-02 12:38:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,029 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,336 KB
最終ジャッジ日時 2024-06-10 09:11:08
合計ジャッジ時間 4,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 40 ms
13,824 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 58 ms
16,432 KB
testcase_06 AC 165 ms
56,336 KB
testcase_07 AC 165 ms
56,260 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 25 ms
11,008 KB
testcase_10 AC 353 ms
56,252 KB
testcase_11 AC 348 ms
56,256 KB
testcase_12 AC 350 ms
56,260 KB
testcase_13 AC 361 ms
56,128 KB
testcase_14 AC 364 ms
55,876 KB
testcase_15 AC 370 ms
56,128 KB
testcase_16 AC 363 ms
56,124 KB
testcase_17 AC 360 ms
56,116 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 25 ms
10,880 KB
testcase_21 AC 25 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.617 Nafmo、買い出しに行く
https://yukicoder.me/problems/no/617

"""
import sys
from sys import stdin
from itertools import compress
from bisect import bisect_right
input = stdin.readline


def main(args):
    N, K = map(int, input().split())
    items = []
    for i in range(N):
        items.append(int(input()))

    itemsA = items[:10]
    itemsB = items[10:]

    totalA = []
    for i in range(2**len(itemsA)):
        mask = [int(x) for x in list(bin(i)[2:].zfill(len(itemsA)))]
        res = compress(itemsA, mask)
        totalA.append(sum(res))

    totalB = []
    for i in range(2**len(itemsB)):
        mask = [int(x) for x in list(bin(i)[2:].zfill(len(itemsB)))]
        res = compress(itemsB, mask)
        totalB.append(sum(res))

    grand_total = []
    for a in totalA:
        for b in totalB:
            grand_total.append(a+b)
    grand_total.sort()

    i = bisect_right(grand_total, K)
    print(grand_total[i-1])


if __name__ == '__main__':
    main(sys.argv[1:])
0