結果

問題 No.50 おもちゃ箱
ユーザー kohei2019kohei2019
提出日時 2021-06-02 21:49:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,803 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-11-15 17:35:41
合計ジャッジ時間 25,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
67,456 KB
testcase_01 AC 1,548 ms
76,416 KB
testcase_02 AC 65 ms
65,280 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 45 ms
53,120 KB
testcase_05 AC 1,037 ms
76,288 KB
testcase_06 AC 182 ms
76,416 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 43 ms
53,504 KB
testcase_09 AC 44 ms
53,504 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 48 ms
59,736 KB
testcase_12 AC 43 ms
53,504 KB
testcase_13 AC 43 ms
53,596 KB
testcase_14 AC 65 ms
65,280 KB
testcase_15 AC 42 ms
53,376 KB
testcase_16 AC 56 ms
64,384 KB
testcase_17 AC 705 ms
76,416 KB
testcase_18 AC 115 ms
76,160 KB
testcase_19 AC 1,376 ms
76,544 KB
testcase_20 AC 67 ms
69,504 KB
testcase_21 AC 166 ms
76,288 KB
testcase_22 AC 985 ms
76,544 KB
testcase_23 AC 88 ms
76,376 KB
testcase_24 AC 43 ms
53,248 KB
testcase_25 AC 43 ms
53,376 KB
testcase_26 AC 68 ms
69,888 KB
testcase_27 AC 203 ms
76,416 KB
testcase_28 AC 900 ms
76,616 KB
testcase_29 AC 760 ms
76,192 KB
testcase_30 AC 825 ms
76,416 KB
testcase_31 AC 44 ms
53,248 KB
testcase_32 AC 1,803 ms
76,544 KB
testcase_33 AC 1,593 ms
76,888 KB
testcase_34 AC 1,230 ms
76,288 KB
testcase_35 AC 1,123 ms
76,700 KB
testcase_36 AC 1,355 ms
76,544 KB
testcase_37 AC 913 ms
76,704 KB
testcase_38 AC 981 ms
76,428 KB
testcase_39 AC 1,432 ms
76,672 KB
testcase_40 AC 1,542 ms
76,288 KB
testcase_41 AC 1,106 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import copy
N = int(input())
lsA = list(map(int,input().split()))
M = int(input())
lsB = list(map(int,input().split()))
lsB.sort(reverse=True)

lsp = itertools.permutations(lsA)

cnt = float('INF')
for p in lsp:
    lsB1 = copy.copy(lsB)
    for i in range(N):
        f = False
        for j in range(M):
            if lsB1[j] >= p[i]:
                lsB1[j] -= p[i]
                f = True
                break
        if f == False:
            break
    if f:
        ii = 0
        for j in range(M):
            if lsB1[j] != lsB[j]:
                ii += 1
        cnt = min(ii,cnt)

if cnt == float('INF'):
    print(-1)
else:
    print(cnt)
0