結果

問題 No.5 数字のブロック
ユーザー omicoder2017omicoder2017
提出日時 2017-10-13 12:46:09
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 397 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 818,436 KB
最終ジャッジ日時 2024-11-17 11:22:39
合計ジャッジ時間 60,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,220 KB
testcase_01 AC 15 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 AC 113 ms
6,272 KB
testcase_21 AC 14 ms
6,144 KB
testcase_22 AC 13 ms
6,272 KB
testcase_23 AC 14 ms
6,272 KB
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 441 ms
6,144 KB
testcase_27 AC 13 ms
6,272 KB
testcase_28 AC 13 ms
6,144 KB
testcase_29 MLE -
testcase_30 TLE -
testcase_31 AC 445 ms
6,400 KB
testcase_32 AC 13 ms
6,272 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8
import itertools


L = int(raw_input())
N = int(raw_input())
W = raw_input()


listW=W.split(" ")

for i in range(1,N+1):
    result = list(itertools.combinations(listW,i))
    len_res = len(result)
    for k in range(len_res):
        int_res = map(int,result[k])
        blocks = sum(int_res)
        if L>=blocks:
            ans = i
        else:
            continue

print ans
0