結果

問題 No.393 2本の竹
ユーザー ckawatakckawatak
提出日時 2019-01-09 23:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 80,008 KB
最終ジャッジ日時 2024-11-24 01:00:59
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,836 KB
testcase_01 AC 47 ms
60,224 KB
testcase_02 AC 49 ms
63,456 KB
testcase_03 AC 47 ms
63,584 KB
testcase_04 AC 46 ms
61,152 KB
testcase_05 AC 50 ms
62,432 KB
testcase_06 AC 42 ms
59,840 KB
testcase_07 AC 48 ms
63,800 KB
testcase_08 AC 63 ms
70,052 KB
testcase_09 AC 330 ms
80,008 KB
testcase_10 AC 93 ms
77,264 KB
testcase_11 AC 127 ms
77,648 KB
testcase_12 AC 151 ms
77,800 KB
testcase_13 AC 98 ms
76,644 KB
testcase_14 AC 67 ms
75,484 KB
testcase_15 AC 51 ms
70,356 KB
testcase_16 AC 64 ms
76,024 KB
testcase_17 AC 48 ms
64,084 KB
testcase_18 AC 46 ms
61,748 KB
testcase_19 AC 42 ms
59,836 KB
testcase_20 AC 44 ms
60,572 KB
testcase_21 AC 47 ms
62,220 KB
testcase_22 AC 183 ms
79,144 KB
testcase_23 AC 96 ms
76,388 KB
testcase_24 AC 58 ms
66,516 KB
testcase_25 AC 54 ms
64,244 KB
testcase_26 AC 43 ms
59,992 KB
testcase_27 AC 288 ms
78,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
        
for i in range(N):
    n1, n2 = sorted(list(map(int, input().split(' '))))
    m = int(input())
    fragments = sorted(list(map(int, input().split(' '))))

    acc = 0
    count = 0
    while count < m and acc + fragments[count] <= n1 + n2:
        acc = acc + fragments[count]
        count = count + 1

    dp = [False for _ in range(n1+1)]
    dp[0] = True

    for i in range(count):
        for j in reversed(range(n1)):
            if dp[j]:
                if j + fragments[i] < n1+1:
                    dp[j + fragments[i]] = True

    last = n1
    while not dp[last]:
        last = last - 1

    found = (acc - last <= n2)
    print(count - (0 if found else 1))
0