結果

問題 No.2561 みんな大好きmod 998
ユーザー けんぴんけんぴん
提出日時 2023-11-06 00:39:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 4,000 ms
コード長 607 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 187,792 KB
最終ジャッジ日時 2024-09-25 22:55:05
合計ジャッジ時間 6,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 71 ms
80,896 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 271 ms
187,392 KB
testcase_04 AC 282 ms
187,740 KB
testcase_05 AC 279 ms
187,520 KB
testcase_06 AC 267 ms
187,520 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 38 ms
53,760 KB
testcase_09 AC 46 ms
62,592 KB
testcase_10 AC 38 ms
53,632 KB
testcase_11 AC 77 ms
84,224 KB
testcase_12 AC 38 ms
53,376 KB
testcase_13 AC 38 ms
53,504 KB
testcase_14 AC 38 ms
53,760 KB
testcase_15 AC 272 ms
187,776 KB
testcase_16 AC 38 ms
53,504 KB
testcase_17 AC 38 ms
53,376 KB
testcase_18 AC 47 ms
53,760 KB
testcase_19 AC 226 ms
159,232 KB
testcase_20 AC 43 ms
59,648 KB
testcase_21 AC 39 ms
53,376 KB
testcase_22 AC 39 ms
53,632 KB
testcase_23 AC 37 ms
53,760 KB
testcase_24 AC 38 ms
53,376 KB
testcase_25 AC 38 ms
53,376 KB
testcase_26 AC 82 ms
84,480 KB
testcase_27 AC 281 ms
187,520 KB
testcase_28 AC 114 ms
102,212 KB
testcase_29 AC 78 ms
83,292 KB
testcase_30 AC 122 ms
106,752 KB
testcase_31 AC 174 ms
136,832 KB
testcase_32 AC 72 ms
83,072 KB
testcase_33 AC 73 ms
83,072 KB
testcase_34 AC 291 ms
187,792 KB
testcase_35 AC 55 ms
72,960 KB
testcase_36 AC 57 ms
73,344 KB
testcase_37 AC 58 ms
68,352 KB
testcase_38 AC 83 ms
84,224 KB
testcase_39 AC 124 ms
106,624 KB
testcase_40 AC 124 ms
106,664 KB
testcase_41 AC 81 ms
84,472 KB
testcase_42 AC 113 ms
101,888 KB
testcase_43 AC 57 ms
68,992 KB
testcase_44 AC 80 ms
84,352 KB
testcase_45 AC 225 ms
159,360 KB
testcase_46 AC 64 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 非再帰BFS (K個目はqに入れずにそのまま判定)
from collections import deque

N,K = map(int,input().split())
assert 1 <= N <= 28
assert 1 <= K <= min(8,N)
A = list(map(int,input().split()))
for a in A:
    assert 0 <= a <= 998244352
ans = 0
# [i,l,s]: i個選んだ,今まで選んだ数字のうち一番後ろのindexはl,和はs
q = deque([[0,-1,0]])
while q:
    i,l,s = q.popleft()
    for j in range(l+1,N-K+1+i):
        if i == K-1:
            if (s+A[j]) % 998244353 <= (s+A[j]) % 998:
                ans += 1
        else:
            q.append([i+1,j,s+A[j]])
print(ans % 998)
0