結果

問題 No.5 数字のブロック
ユーザー shogo2022shogo2022
提出日時 2017-01-18 07:51:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 312 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 821,632 KB
最終ジャッジ日時 2024-12-23 00:56:47
合計ジャッジ時間 57,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 34 ms
10,880 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 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 AC 61 ms
10,880 KB
testcase_21 AC 35 ms
10,624 KB
testcase_22 AC 33 ms
10,880 KB
testcase_23 AC 33 ms
10,880 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 44 ms
10,752 KB
testcase_27 AC 33 ms
10,880 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 41 ms
10,752 KB
testcase_32 AC 34 ms
10,880 KB
testcase_33 AC 34 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import sys

width = int(input())
number = int(input())
blocks = list(map(int, input().split(' ')))

largest_num = 0
largest_qty = 0
for num in range(number,0,-1):
    for cmb in list(itertools.combinations(blocks,num)):
        if sum(cmb) <= width:
            print(num)
            sys.exit()
0