結果

問題 No.50 おもちゃ箱
ユーザー ytftytft
提出日時 2022-11-06 01:20:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-19 18:05:52
合計ジャッジ時間 26,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 753 ms
76,032 KB
testcase_06 WA -
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 34 ms
51,712 KB
testcase_11 AC 39 ms
57,984 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 57 ms
64,384 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 WA -
testcase_17 AC 813 ms
75,776 KB
testcase_18 AC 138 ms
75,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 170 ms
75,648 KB
testcase_22 AC 1,089 ms
75,520 KB
testcase_23 AC 109 ms
75,648 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 41 ms
52,224 KB
testcase_26 AC 69 ms
69,248 KB
testcase_27 AC 208 ms
75,648 KB
testcase_28 AC 1,120 ms
75,776 KB
testcase_29 AC 1,110 ms
75,520 KB
testcase_30 AC 980 ms
75,776 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1,152 ms
75,520 KB
testcase_39 AC 1,031 ms
75,648 KB
testcase_40 WA -
testcase_41 AC 1,256 ms
75,520 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=-1
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=max(ans,M-temp.count(0))
print(ans)
0