結果

問題 No.393 2本の竹
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 17:20:05
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 575 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 168,464 KB
最終ジャッジ日時 2024-11-24 18:04:30
合計ジャッジ時間 22,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
84,176 KB
testcase_01 AC 70 ms
163,872 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 68 ms
82,268 KB
testcase_05 AC 211 ms
164,768 KB
testcase_06 AC 76 ms
84,028 KB
testcase_07 AC 596 ms
162,868 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 88 ms
84,680 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 380 ms
80,068 KB
testcase_15 AC 111 ms
77,880 KB
testcase_16 AC 97 ms
77,236 KB
testcase_17 AC 72 ms
75,420 KB
testcase_18 AC 219 ms
77,852 KB
testcase_19 AC 70 ms
75,788 KB
testcase_20 AC 81 ms
77,816 KB
testcase_21 AC 93 ms
77,472 KB
testcase_22 TLE -
testcase_23 AC 490 ms
79,008 KB
testcase_24 AC 157 ms
78,624 KB
testcase_25 AC 98 ms
77,828 KB
testcase_26 AC 70 ms
75,548 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