結果

問題 No.50 おもちゃ箱
ユーザー nebukuro09nebukuro09
提出日時 2016-10-02 19:58:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 6,516 KB
実行使用メモリ 6,200 KB
最終ジャッジ日時 2023-09-08 04:34:12
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,960 KB
testcase_01 AC 12 ms
6,200 KB
testcase_02 AC 11 ms
6,032 KB
testcase_03 AC 11 ms
6,032 KB
testcase_04 AC 11 ms
6,196 KB
testcase_05 AC 11 ms
5,952 KB
testcase_06 AC 16 ms
5,948 KB
testcase_07 AC 11 ms
6,004 KB
testcase_08 AC 12 ms
5,992 KB
testcase_09 AC 12 ms
6,124 KB
testcase_10 AC 11 ms
6,080 KB
testcase_11 AC 12 ms
5,988 KB
testcase_12 AC 11 ms
6,196 KB
testcase_13 AC 11 ms
6,080 KB
testcase_14 AC 11 ms
6,024 KB
testcase_15 AC 11 ms
5,988 KB
testcase_16 AC 11 ms
6,200 KB
testcase_17 AC 12 ms
6,084 KB
testcase_18 AC 11 ms
6,196 KB
testcase_19 AC 17 ms
6,128 KB
testcase_20 AC 12 ms
5,992 KB
testcase_21 AC 12 ms
6,016 KB
testcase_22 AC 22 ms
6,132 KB
testcase_23 AC 11 ms
6,024 KB
testcase_24 AC 11 ms
6,028 KB
testcase_25 AC 11 ms
6,056 KB
testcase_26 AC 11 ms
6,132 KB
testcase_27 AC 13 ms
6,008 KB
testcase_28 AC 27 ms
6,200 KB
testcase_29 AC 111 ms
5,964 KB
testcase_30 AC 11 ms
6,064 KB
testcase_31 AC 11 ms
6,160 KB
testcase_32 AC 15 ms
6,084 KB
testcase_33 AC 347 ms
6,008 KB
testcase_34 AC 11 ms
6,128 KB
testcase_35 AC 12 ms
6,084 KB
testcase_36 AC 35 ms
6,040 KB
testcase_37 AC 12 ms
6,008 KB
testcase_38 AC 85 ms
6,016 KB
testcase_39 AC 12 ms
5,948 KB
testcase_40 AC 12 ms
6,060 KB
testcase_41 AC 129 ms
6,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = map(int, raw_input().split())
M = input()
B = sorted(map(int, raw_input().split()))[::-1]

def rec(p, L):
    if p > N-1:
        return True
    for i in xrange(len(L)):
        if L[i] >= A[p]:
            L[i] -= A[p]
            if rec(p+1, L):
                return True
            L[i] += A[p]
    return False

for i in xrange(1, M+1):
    if rec(0, B[:i]):
        print i
        break
else:
    print -1
0