結果

問題 No.50 おもちゃ箱
ユーザー pluto77pluto77
提出日時 2016-08-05 14:00:38
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,415 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 77,868 KB
最終ジャッジ日時 2024-06-25 21:36:33
合計ジャッジ時間 19,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
76,928 KB
testcase_01 AC 845 ms
77,696 KB
testcase_02 AC 94 ms
77,312 KB
testcase_03 AC 85 ms
75,520 KB
testcase_04 AC 83 ms
75,392 KB
testcase_05 AC 529 ms
77,440 KB
testcase_06 AC 150 ms
77,440 KB
testcase_07 AC 85 ms
75,264 KB
testcase_08 AC 86 ms
75,392 KB
testcase_09 AC 85 ms
75,520 KB
testcase_10 AC 84 ms
75,264 KB
testcase_11 AC 86 ms
76,672 KB
testcase_12 AC 87 ms
75,392 KB
testcase_13 AC 82 ms
75,392 KB
testcase_14 AC 94 ms
77,312 KB
testcase_15 AC 86 ms
75,648 KB
testcase_16 AC 92 ms
77,440 KB
testcase_17 AC 546 ms
77,568 KB
testcase_18 AC 132 ms
77,312 KB
testcase_19 AC 1,415 ms
77,568 KB
testcase_20 AC 99 ms
77,572 KB
testcase_21 AC 186 ms
77,312 KB
testcase_22 AC 644 ms
77,696 KB
testcase_23 AC 117 ms
77,824 KB
testcase_24 AC 86 ms
75,520 KB
testcase_25 AC 86 ms
75,648 KB
testcase_26 AC 96 ms
77,608 KB
testcase_27 AC 140 ms
77,312 KB
testcase_28 AC 820 ms
77,696 KB
testcase_29 AC 814 ms
77,184 KB
testcase_30 AC 628 ms
77,704 KB
testcase_31 AC 85 ms
75,008 KB
testcase_32 AC 797 ms
77,568 KB
testcase_33 AC 810 ms
77,868 KB
testcase_34 AC 824 ms
77,568 KB
testcase_35 AC 748 ms
77,824 KB
testcase_36 AC 837 ms
77,824 KB
testcase_37 AC 805 ms
77,568 KB
testcase_38 AC 796 ms
77,696 KB
testcase_39 AC 803 ms
77,440 KB
testcase_40 AC 667 ms
77,568 KB
testcase_41 AC 813 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki50

from itertools import permutations

n=int(raw_input())
a=map(int,raw_input().split())
m=int(raw_input())
b=map(int,raw_input().split())

a.sort()
b.sort()
b.reverse()

res=m+1
for perm in permutations(a,n):
 temp=b[:]
 i,j=0,0
 while i<n and j<m:
  if temp[j]>=perm[i]:
   temp[j]-=perm[i]
   i+=1
  else:
   j+=1
 res=min(res,j+1)

if res<m+1:
 print res
else:
 print -1
0