結果

問題 No.2561 みんな大好きmod 998
ユーザー けんぴんけんぴん
提出日時 2023-10-29 21:13:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 4,000 ms
コード長 545 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 187,972 KB
最終ジャッジ日時 2024-09-25 22:29:02
合計ジャッジ時間 6,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,620 KB
testcase_01 AC 68 ms
81,040 KB
testcase_02 AC 36 ms
55,088 KB
testcase_03 AC 270 ms
187,740 KB
testcase_04 AC 272 ms
187,764 KB
testcase_05 AC 277 ms
187,664 KB
testcase_06 AC 261 ms
187,920 KB
testcase_07 AC 37 ms
54,112 KB
testcase_08 AC 38 ms
54,396 KB
testcase_09 AC 45 ms
63,460 KB
testcase_10 AC 37 ms
54,324 KB
testcase_11 AC 75 ms
84,980 KB
testcase_12 AC 38 ms
53,760 KB
testcase_13 AC 37 ms
53,376 KB
testcase_14 AC 37 ms
53,572 KB
testcase_15 AC 268 ms
187,972 KB
testcase_16 AC 36 ms
53,632 KB
testcase_17 AC 37 ms
53,632 KB
testcase_18 AC 38 ms
54,016 KB
testcase_19 AC 218 ms
159,600 KB
testcase_20 AC 43 ms
60,032 KB
testcase_21 AC 39 ms
53,248 KB
testcase_22 AC 39 ms
53,760 KB
testcase_23 AC 38 ms
53,504 KB
testcase_24 AC 38 ms
53,376 KB
testcase_25 AC 37 ms
53,504 KB
testcase_26 AC 80 ms
84,684 KB
testcase_27 AC 282 ms
187,648 KB
testcase_28 AC 111 ms
102,400 KB
testcase_29 AC 73 ms
83,300 KB
testcase_30 AC 121 ms
106,880 KB
testcase_31 AC 177 ms
137,016 KB
testcase_32 AC 71 ms
83,356 KB
testcase_33 AC 73 ms
83,456 KB
testcase_34 AC 272 ms
187,648 KB
testcase_35 AC 54 ms
73,508 KB
testcase_36 AC 54 ms
73,472 KB
testcase_37 AC 53 ms
69,092 KB
testcase_38 AC 77 ms
84,480 KB
testcase_39 AC 119 ms
106,768 KB
testcase_40 AC 117 ms
106,752 KB
testcase_41 AC 77 ms
84,608 KB
testcase_42 AC 108 ms
101,908 KB
testcase_43 AC 53 ms
68,864 KB
testcase_44 AC 75 ms
84,608 KB
testcase_45 AC 220 ms
159,360 KB
testcase_46 AC 62 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,K = map(int,input().split())
assert 1 <= N <= 35
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