結果

問題 No.2561 みんな大好きmod 998
ユーザー けんぴんけんぴん
提出日時 2023-11-06 00:41:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,145 ms / 4,000 ms
コード長 584 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 423,040 KB
最終ジャッジ日時 2024-09-25 22:55:23
合計ジャッジ時間 15,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 94 ms
82,432 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 1,145 ms
423,032 KB
testcase_04 AC 1,122 ms
423,036 KB
testcase_05 AC 1,111 ms
423,036 KB
testcase_06 AC 1,066 ms
423,040 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 54 ms
63,232 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 156 ms
125,536 KB
testcase_12 AC 42 ms
53,376 KB
testcase_13 AC 41 ms
53,504 KB
testcase_14 AC 43 ms
53,376 KB
testcase_15 AC 1,078 ms
423,040 KB
testcase_16 AC 43 ms
53,632 KB
testcase_17 AC 42 ms
53,376 KB
testcase_18 AC 43 ms
53,888 KB
testcase_19 AC 726 ms
347,264 KB
testcase_20 AC 49 ms
60,800 KB
testcase_21 AC 45 ms
53,120 KB
testcase_22 AC 42 ms
52,992 KB
testcase_23 AC 44 ms
54,400 KB
testcase_24 AC 44 ms
53,504 KB
testcase_25 AC 43 ms
53,376 KB
testcase_26 AC 202 ms
146,816 KB
testcase_27 AC 1,078 ms
423,036 KB
testcase_28 AC 267 ms
187,648 KB
testcase_29 AC 127 ms
106,740 KB
testcase_30 AC 255 ms
177,004 KB
testcase_31 AC 535 ms
286,976 KB
testcase_32 AC 129 ms
106,368 KB
testcase_33 AC 129 ms
106,624 KB
testcase_34 AC 1,072 ms
422,788 KB
testcase_35 AC 88 ms
84,736 KB
testcase_36 AC 93 ms
84,864 KB
testcase_37 AC 90 ms
84,608 KB
testcase_38 AC 163 ms
125,824 KB
testcase_39 AC 258 ms
177,024 KB
testcase_40 AC 260 ms
177,024 KB
testcase_41 AC 169 ms
125,696 KB
testcase_42 AC 272 ms
187,392 KB
testcase_43 AC 93 ms
84,352 KB
testcase_44 AC 141 ms
107,776 KB
testcase_45 AC 720 ms
346,880 KB
testcase_46 AC 129 ms
106,240 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()
    if i == K:
        if s % 998244353 <= s % 998:
            ans += 1
        continue
    for j in range(l+1,N-K+1+i):
        q.append([i+1,j,s+A[j]])
print(ans % 998)
0