結果

問題 No.50 おもちゃ箱
ユーザー ytftytft
提出日時 2022-11-06 01:28:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,030 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,492 KB
最終ジャッジ日時 2024-07-19 18:11:13
合計ジャッジ時間 29,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,688 KB
testcase_01 AC 1,808 ms
76,072 KB
testcase_02 AC 55 ms
63,872 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 1,132 ms
76,416 KB
testcase_06 AC 187 ms
76,416 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 43 ms
58,496 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 60 ms
64,768 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 54 ms
63,872 KB
testcase_17 AC 1,018 ms
76,032 KB
testcase_18 AC 143 ms
76,232 KB
testcase_19 AC 1,652 ms
76,032 KB
testcase_20 AC 68 ms
71,680 KB
testcase_21 AC 186 ms
76,288 KB
testcase_22 AC 1,300 ms
76,076 KB
testcase_23 AC 112 ms
76,032 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 61 ms
70,272 KB
testcase_27 AC 206 ms
76,052 KB
testcase_28 AC 1,353 ms
76,104 KB
testcase_29 AC 1,342 ms
75,784 KB
testcase_30 AC 1,231 ms
75,772 KB
testcase_31 AC 40 ms
52,344 KB
testcase_32 AC 2,030 ms
76,468 KB
testcase_33 AC 1,878 ms
76,488 KB
testcase_34 AC 1,449 ms
76,288 KB
testcase_35 AC 1,526 ms
76,492 KB
testcase_36 AC 1,766 ms
76,084 KB
testcase_37 AC 1,315 ms
76,288 KB
testcase_38 AC 1,365 ms
75,712 KB
testcase_39 AC 1,251 ms
75,820 KB
testcase_40 AC 1,614 ms
76,160 KB
testcase_41 AC 1,473 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,itertools
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
A=list(map(int,input().split()))
M=int(input())
B=sorted(list(map(int,input().split())))[::-1]
A=itertools.permutations(A)
ans=float('inf')
for i in A:
	temp=[0 for i in range(M)]
	for j in i:
		for k in range(M):
			if temp[k]+j<=B[k]:
				temp[k]+=j
				break
		else:
			break
	else:
		ans=min(ans,M-temp.count(0))
print(ans if ans!=float('inf') else -1)
0