結果

問題 No.1861 Required Number
ユーザー roarisroaris
提出日時 2022-03-04 21:56:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 985 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 155,828 KB
最終ジャッジ日時 2024-07-18 22:49:40
合計ジャッジ時間 22,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,164 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,600 KB
testcase_03 AC 420 ms
155,736 KB
testcase_04 AC 402 ms
155,828 KB
testcase_05 AC 37 ms
55,032 KB
testcase_06 AC 36 ms
55,584 KB
testcase_07 AC 40 ms
59,740 KB
testcase_08 AC 46 ms
65,016 KB
testcase_09 WA -
testcase_10 AC 44 ms
63,860 KB
testcase_11 AC 47 ms
64,328 KB
testcase_12 WA -
testcase_13 AC 47 ms
63,436 KB
testcase_14 AC 47 ms
64,204 KB
testcase_15 AC 49 ms
64,908 KB
testcase_16 WA -
testcase_17 AC 47 ms
64,352 KB
testcase_18 AC 47 ms
63,776 KB
testcase_19 AC 50 ms
64,728 KB
testcase_20 AC 48 ms
64,632 KB
testcase_21 AC 47 ms
63,536 KB
testcase_22 AC 47 ms
64,052 KB
testcase_23 AC 49 ms
64,368 KB
testcase_24 AC 193 ms
89,292 KB
testcase_25 AC 401 ms
134,412 KB
testcase_26 AC 121 ms
87,728 KB
testcase_27 AC 180 ms
88,908 KB
testcase_28 AC 195 ms
88,816 KB
testcase_29 AC 144 ms
88,232 KB
testcase_30 AC 63 ms
73,596 KB
testcase_31 AC 403 ms
134,300 KB
testcase_32 AC 87 ms
82,008 KB
testcase_33 AC 298 ms
111,084 KB
testcase_34 AC 352 ms
132,180 KB
testcase_35 AC 349 ms
133,292 KB
testcase_36 AC 147 ms
88,560 KB
testcase_37 AC 192 ms
88,084 KB
testcase_38 AC 362 ms
134,252 KB
testcase_39 AC 238 ms
108,280 KB
testcase_40 AC 419 ms
134,220 KB
testcase_41 AC 405 ms
134,524 KB
testcase_42 AC 355 ms
128,972 KB
testcase_43 AC 198 ms
88,568 KB
testcase_44 AC 39 ms
53,876 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
dp1 = [False]*(K+1)
dp1[0] = True
dp2 = [[False]*(K+1) for _ in range(N+1)]
dp2[0][0] = True

for i in range(N):
    for j in range(K+1):
        if dp2[i][j]:
            dp2[i+1][j] = True
            
            if j+A[N-1-i]<=K:
                dp2[i+1][j+A[N-1-i]] = True

ans = 0

for i in range(N):
    for j in range(K+1):
        if dp1[j] and dp2[N-1-i][K-j]:
            break
    else:
        ans += 1
    
    for j in range(K, -1, -1):
        if dp1[j] and j+A[i]<=K:
            dp1[j+A[i]] = True

print(ans)
0