結果

問題 No.393 2本の竹
ユーザー nebukuro09nebukuro09
提出日時 2016-10-02 20:46:47
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 575 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 20,168 KB
最終ジャッジ日時 2024-11-21 13:07:55
合計ジャッジ時間 26,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,764 KB
testcase_01 AC 10 ms
13,216 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 12 ms
13,760 KB
testcase_05 AC 63 ms
13,220 KB
testcase_06 AC 12 ms
13,092 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 50 ms
13,764 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 33 ms
13,216 KB
testcase_16 AC 41 ms
13,220 KB
testcase_17 AC 11 ms
13,768 KB
testcase_18 TLE -
testcase_19 AC 12 ms
13,764 KB
testcase_20 AC 12 ms
6,820 KB
testcase_21 AC 15 ms
6,820 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 59 ms
6,820 KB
testcase_25 AC 15 ms
6,816 KB
testcase_26 AC 11 ms
6,820 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

d = input()

def rec(p, m, A, L):
    if p > m-1:
        return True
    if A[p] <= L[0]:
        L[0] -= A[p]
        if rec(p+1, m, A, L):
            return True
        L[0] += A[p]
    if A[p] <= L[1]:
        L[1] -= A[p]
        if rec(p+1, m, A, L):
            return True
        L[1] += A[p]
    return False

def solve(A, L):
    for i in xrange(len(A), -1, -1):
        if rec(0, i, A, L):
            print i
            break

for i in xrange(d):
    L = map(int, raw_input().split())
    input()
    A = sorted(map(int, raw_input().split()))
    solve(A, L)
0