結果

問題 No.1861 Required Number
ユーザー 👑 rin204rin204
提出日時 2022-03-05 20:37:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 147,328 KB
最終ジャッジ日時 2024-07-20 02:59:22
合計ジャッジ時間 20,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,928 KB
testcase_01 AC 43 ms
62,976 KB
testcase_02 AC 39 ms
57,088 KB
testcase_03 AC 212 ms
147,328 KB
testcase_04 AC 216 ms
69,248 KB
testcase_05 AC 41 ms
135,552 KB
testcase_06 AC 41 ms
57,088 KB
testcase_07 AC 46 ms
58,240 KB
testcase_08 AC 48 ms
58,368 KB
testcase_09 AC 46 ms
58,368 KB
testcase_10 AC 48 ms
58,368 KB
testcase_11 AC 47 ms
58,880 KB
testcase_12 AC 45 ms
58,496 KB
testcase_13 AC 46 ms
58,624 KB
testcase_14 AC 44 ms
58,752 KB
testcase_15 AC 48 ms
58,624 KB
testcase_16 AC 47 ms
58,240 KB
testcase_17 AC 48 ms
59,008 KB
testcase_18 AC 48 ms
58,368 KB
testcase_19 AC 48 ms
58,624 KB
testcase_20 AC 49 ms
59,136 KB
testcase_21 AC 47 ms
58,496 KB
testcase_22 AC 49 ms
58,624 KB
testcase_23 AC 47 ms
58,624 KB
testcase_24 AC 116 ms
61,824 KB
testcase_25 AC 212 ms
62,976 KB
testcase_26 AC 79 ms
61,952 KB
testcase_27 AC 109 ms
62,848 KB
testcase_28 AC 119 ms
62,336 KB
testcase_29 AC 89 ms
62,848 KB
testcase_30 AC 55 ms
62,080 KB
testcase_31 AC 206 ms
63,744 KB
testcase_32 AC 58 ms
62,080 KB
testcase_33 AC 157 ms
63,360 KB
testcase_34 AC 182 ms
62,976 KB
testcase_35 AC 183 ms
63,104 KB
testcase_36 AC 92 ms
63,384 KB
testcase_37 AC 114 ms
63,104 KB
testcase_38 AC 177 ms
63,360 KB
testcase_39 AC 125 ms
62,848 KB
testcase_40 AC 205 ms
63,872 KB
testcase_41 AC 197 ms
63,744 KB
testcase_42 AC 176 ms
63,104 KB
testcase_43 AC 117 ms
63,232 KB
testcase_44 WA -
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
dp = [False] * (2 * k + 1)
dp[0] = True

for a in A:
    for i in range(2 * k, a - 1, -1):
        dp[i] |= dp[i - a]

if not dp[k]:
    print(-1)
    exit()
ans = 0
for a in A:
    if not dp[a + k]:
        ans += 1
print(ans)
0