結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | r2en_ |
提出日時 | 2017-12-21 14:52:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,140 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-10 02:17:45 |
合計ジャッジ時間 | 1,596 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 31 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 31 ms
10,752 KB |
testcase_16 | AC | 30 ms
10,752 KB |
testcase_17 | AC | 31 ms
10,752 KB |
testcase_18 | AC | 31 ms
10,752 KB |
testcase_19 | WA | - |
testcase_20 | AC | 31 ms
10,752 KB |
testcase_21 | WA | - |
ソースコード
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 timefn(fn): @wraps(fn) def measure_time(*args, **kwargs): t1 = time.time() res = fn(*args, *kwargs) t2 = time.time() print('@timefn:' + fn.__name__ + ' took ' + str(t2-t1) + ' seconds.') return res return measure_time #def fn(*args, **kwargs): #@timefn #@profile def fn(): #m, n = (int(i) for i in input().split()) m, n = (i for i in input().split()) m, n = int(m), int(n) #a = [int(input()) for _ in range(n)] a = [input() for _ in range(m)] # m, n, a = 4, 4, [1, 2, 3, 5] a = map(int, a) max_val = 0 ans_lst = () for i, _ in enumerate(a, 1): for perm in itertools.permutations(a, r=i): enum = tuple(itertools.chain(perm)) enum = reduce(lambda x, y: x + y if n >= x + y else 0, enum) if enum > max_val and n >= enum: max_val = enum print('{0}'.format(max_val)) if __name__ == "__main__": fn()