結果

問題 No.50 おもちゃ箱
ユーザー roiti46roiti46
提出日時 2015-02-23 17:06:53
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 462 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 78,528 KB
最終ジャッジ日時 2024-06-23 22:10:13
合計ジャッジ時間 16,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 76 ms
75,532 KB
testcase_04 AC 76 ms
75,680 KB
testcase_05 AC 685 ms
77,844 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 77 ms
75,420 KB
testcase_09 WA -
testcase_10 AC 77 ms
75,664 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
75,952 KB
testcase_16 WA -
testcase_17 AC 658 ms
77,472 KB
testcase_18 AC 119 ms
77,728 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 128 ms
77,832 KB
testcase_22 AC 712 ms
78,072 KB
testcase_23 AC 101 ms
77,588 KB
testcase_24 AC 77 ms
75,528 KB
testcase_25 AC 75 ms
75,800 KB
testcase_26 WA -
testcase_27 AC 125 ms
77,932 KB
testcase_28 WA -
testcase_29 AC 611 ms
78,192 KB
testcase_30 AC 694 ms
77,752 KB
testcase_31 AC 77 ms
75,640 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 996 ms
77,984 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 665 ms
77,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as it
N = int(raw_input())
A = map(int,raw_input().split())
M = int(raw_input())
_B = sorted(map(int,raw_input().split()),reverse = True)
ans = 100
for order in it.permutations(A,N):
    B = _B[:]
    i = j = 0
    while i < N and j < M:
        if B[j] >= A[i]:
            B[j] -= A[i]
            i += 1
        else:
            j += 1
        if i == N:
            ans = min(ans, j+1)
            break
print ans if ans < 100 else -1
    
0