結果

問題 No.617 Nafmo、買い出しに行く
ユーザー r2en_r2en_
提出日時 2017-12-20 22:52:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 10,876 KB
実行使用メモリ 145,588 KB
最終ジャッジ日時 2023-08-22 11:04:31
合計ジャッジ時間 4,001 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
17,672 KB
testcase_01 AC 19 ms
8,584 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import itertools
import collections
from functools import reduce
from functools import wraps
from collections import defaultdict
# import pdb; pdb.set_trace()
from operator import add

def fn(*args, **kwargs):
    m, n = map(int, input().split())
    a = []
    for i in range(m):
        a.append(input().split())
    a = list(map(int, reduce(add, a)))
    
    ans_lst = []
    for i, _ in enumerate(a, 1):
        for perm in itertools.permutations(a, r=i):
            enum = reduce(lambda x, y: x + y, perm)
            ans_lst.append(enum)
    ans = max(list(filter(lambda x: n >= x, ans_lst)))
    print(ans)
    #return ans

if __name__ == "__main__": fn()
0