結果

問題 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
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 142,208 KB
最終ジャッジ日時 2024-12-16 07:22:55
合計ジャッジ時間 40,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
20,736 KB
testcase_01 AC 30 ms
113,536 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 34 ms
16,128 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 RE -
testcase_09 AC 30 ms
134,656 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 RE -
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
140,800 KB
権限があれば一括ダウンロードができます

ソースコード

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