結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | r2en_ |
提出日時 | 2017-12-20 22:54:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 130,176 KB |
最終ジャッジ日時 | 2024-05-09 16:45:05 |
合計ジャッジ時間 | 3,806 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 148 ms
20,864 KB |
testcase_01 | AC | 24 ms
10,752 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 | -- | - |
ソースコード
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): def fn(): 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()