結果

問題 No.393 2本の竹
ユーザー roarisroaris
提出日時 2019-12-13 00:24:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 702 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 259,236 KB
最終ジャッジ日時 2024-06-26 01:07:26
合計ジャッジ時間 8,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,440 KB
testcase_01 AC 56 ms
64,860 KB
testcase_02 AC 68 ms
70,636 KB
testcase_03 AC 63 ms
69,668 KB
testcase_04 AC 53 ms
63,916 KB
testcase_05 AC 66 ms
69,772 KB
testcase_06 AC 58 ms
65,368 KB
testcase_07 AC 80 ms
74,496 KB
testcase_08 AC 113 ms
76,844 KB
testcase_09 TLE -
testcase_10 AC 401 ms
141,928 KB
testcase_11 AC 496 ms
149,444 KB
testcase_12 AC 524 ms
162,404 KB
testcase_13 AC 371 ms
133,644 KB
testcase_14 AC 259 ms
111,352 KB
testcase_15 AC 166 ms
95,136 KB
testcase_16 AC 344 ms
143,796 KB
testcase_17 AC 64 ms
68,892 KB
testcase_18 AC 63 ms
68,672 KB
testcase_19 AC 51 ms
63,840 KB
testcase_20 AC 58 ms
66,036 KB
testcase_21 AC 63 ms
68,812 KB
testcase_22 AC 599 ms
173,476 KB
testcase_23 AC 367 ms
112,180 KB
testcase_24 AC 88 ms
76,396 KB
testcase_25 AC 76 ms
74,064 KB
testcase_26 AC 51 ms
62,980 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())

for _ in range(d):
    n1, n2 = map(int, input().split())
    m = int(input())
    A = list(map(int, input().split()))
    A.sort()
    dp = [[False]*(n1+1) for _ in range(m+1)]
    dp[0][0] = True
    acc = 0
    
    for i in range(m):
        for j in range(n1+1):
            if j+A[i]<=n1:
                dp[i+1][j+A[i]] |= dp[i][j]
            
            n2_used = acc-j
            
            if n2_used+A[i]<=n2:
                dp[i+1][j] |= dp[i][j]
            
        acc += A[i]
    
    for i in range(m, -1, -1):
        for j in range(n1+1):
            if dp[i][j]:
                print(i)
                break
        else:
            continue
        break
0