結果

問題 No.50 おもちゃ箱
ユーザー ckawatakckawatak
提出日時 2019-01-14 19:46:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 65,284 KB
最終ジャッジ日時 2024-06-22 18:14:11
合計ジャッジ時間 3,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 34 ms
53,040 KB
testcase_04 AC 34 ms
52,900 KB
testcase_05 AC 154 ms
63,720 KB
testcase_06 AC 48 ms
64,848 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 51 ms
63,492 KB
testcase_18 AC 48 ms
63,536 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 44 ms
64,100 KB
testcase_22 AC 48 ms
63,956 KB
testcase_23 AC 43 ms
61,448 KB
testcase_24 AC 34 ms
52,884 KB
testcase_25 AC 36 ms
52,532 KB
testcase_26 AC 40 ms
59,172 KB
testcase_27 AC 49 ms
63,764 KB
testcase_28 WA -
testcase_29 AC 51 ms
63,216 KB
testcase_30 AC 45 ms
62,252 KB
testcase_31 AC 34 ms
53,144 KB
testcase_32 WA -
testcase_33 AC 49 ms
63,892 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 48 ms
63,604 KB
testcase_39 WA -
testcase_40 AC 63 ms
64,180 KB
testcase_41 AC 52 ms
64,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split(' ')))
M = int(input())
B = list(map(int, input().split(' ')))

sum = [0 for _ in range(1<<N)]
for i in range(1<<N):
    for j in range(N):
        if i & (1<<j):
            sum[i] = sum[i] + A[j]

dp = []
for i in range(M+1):
    dp.append([False for _ in range(1<<N)])

dp[0][0] = True

for i in range(M):
    for j in range(1<<N):
        if sum[j] <= B[i]:
            for k in range(1<<N):
                if dp[i][k]:
                    dp[i+1][j|k] = True

answer = -1
for i in range(M+1):
    if dp[i][(1<<N)-1]:
        answer = i
        break
print(answer)    
0