結果

問題 No.1861 Required Number
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-02 10:22:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 456 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 848,184 KB
最終ジャッジ日時 2024-07-18 22:20:54
合計ジャッジ時間 4,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,008 KB
testcase_01 AC 33 ms
52,340 KB
testcase_02 AC 36 ms
52,396 KB
testcase_03 AC 47 ms
69,016 KB
testcase_04 AC 48 ms
68,264 KB
testcase_05 AC 33 ms
52,568 KB
testcase_06 AC 35 ms
52,668 KB
testcase_07 AC 36 ms
53,364 KB
testcase_08 AC 34 ms
53,264 KB
testcase_09 AC 35 ms
52,600 KB
testcase_10 AC 35 ms
52,536 KB
testcase_11 AC 34 ms
53,624 KB
testcase_12 AC 34 ms
53,692 KB
testcase_13 AC 35 ms
53,088 KB
testcase_14 AC 33 ms
52,120 KB
testcase_15 AC 38 ms
53,136 KB
testcase_16 AC 35 ms
51,572 KB
testcase_17 AC 34 ms
53,220 KB
testcase_18 AC 33 ms
52,964 KB
testcase_19 AC 36 ms
53,096 KB
testcase_20 AC 35 ms
51,872 KB
testcase_21 AC 34 ms
53,220 KB
testcase_22 AC 36 ms
54,680 KB
testcase_23 AC 34 ms
52,684 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
04_evil_1.txt -- -
04_evil_2.txt -- -
04_evil_3.txt -- -
04_evil_4.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

dpl = [0 for _ in range(N + 1)]
dpr = [0 for _ in range(N + 1)]
dpl[0] = 1
dpr[N] = (1 << K)

for i in range(N):
    dpl[i + 1] = dpl[i] | (dpl[i] << A[i])
for i in range(N - 1, -1, -1):
    dpr[i] = dpr[i + 1] | (dpr[i + 1] >> A[i])
if (dpl[N] & (1 << K)) == 0:
    print(-1)
else:
    ans = N
    for i in range(N):
        if dpl[i] & dpr[i + 1]:
            ans -= 1
    print(ans)
0