結果

問題 No.393 2本の竹
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-13 20:02:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 526 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 257,960 KB
最終ジャッジ日時 2024-06-25 20:50:09
合計ジャッジ時間 13,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
247,952 KB
testcase_01 AC 168 ms
171,920 KB
testcase_02 AC 407 ms
248,948 KB
testcase_03 AC 390 ms
247,680 KB
testcase_04 AC 218 ms
214,380 KB
testcase_05 AC 275 ms
248,496 KB
testcase_06 AC 206 ms
205,020 KB
testcase_07 AC 470 ms
256,972 KB
testcase_08 AC 631 ms
257,928 KB
testcase_09 TLE -
testcase_10 AC 349 ms
249,344 KB
testcase_11 AC 578 ms
249,112 KB
testcase_12 AC 581 ms
256,880 KB
testcase_13 AC 583 ms
257,692 KB
testcase_14 AC 484 ms
247,520 KB
testcase_15 AC 299 ms
223,976 KB
testcase_16 AC 400 ms
247,212 KB
testcase_17 AC 371 ms
247,672 KB
testcase_18 AC 223 ms
221,672 KB
testcase_19 AC 124 ms
128,892 KB
testcase_20 AC 201 ms
202,264 KB
testcase_21 AC 317 ms
248,312 KB
testcase_22 AC 543 ms
248,360 KB
testcase_23 AC 573 ms
253,572 KB
testcase_24 AC 320 ms
246,324 KB
testcase_25 AC 263 ms
246,276 KB
testcase_26 AC 161 ms
162,872 KB
testcase_27 AC 921 ms
257,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M=map(int,input().split())
    K=int(input())
    A=list(map(int,input().split()))
    list.sort(A)
    maxN=100010
    dp=[0]*maxN
    dp[0]=1
    ans=0
    cum=0
    for i in range(K):
        cum+=A[i]
        ndp=dp[:]
        for j in range(maxN):
            if dp[j] and j+A[i]<maxN:
                ndp[j+A[i]]=1
        dp=ndp[:]
        for j in range(maxN):
            if dp[j] and j<=N and cum-j<=M:
                ans=max(ans,i+1)
    print(ans)

d=int(input())
while d:
    solve()
    d-=1
0