結果

問題 No.2561 みんな大好きmod 998
ユーザー KudeKude
提出日時 2023-12-12 22:39:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 430 ms / 4,000 ms
コード長 266 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 252,240 KB
最終ジャッジ日時 2024-09-27 05:04:06
合計ジャッジ時間 7,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 62 ms
80,128 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 367 ms
251,964 KB
testcase_04 AC 359 ms
252,216 KB
testcase_05 AC 359 ms
252,220 KB
testcase_06 AC 353 ms
252,240 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 46 ms
59,776 KB
testcase_10 AC 40 ms
51,584 KB
testcase_11 AC 101 ms
121,984 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 39 ms
51,584 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 353 ms
252,120 KB
testcase_16 AC 37 ms
51,456 KB
testcase_17 AC 37 ms
51,584 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 292 ms
245,760 KB
testcase_20 AC 47 ms
58,624 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 41 ms
51,584 KB
testcase_24 AC 40 ms
51,456 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 114 ms
139,520 KB
testcase_27 AC 354 ms
252,236 KB
testcase_28 AC 145 ms
166,016 KB
testcase_29 AC 75 ms
91,392 KB
testcase_30 AC 141 ms
163,968 KB
testcase_31 AC 224 ms
245,888 KB
testcase_32 AC 83 ms
103,040 KB
testcase_33 AC 74 ms
91,648 KB
testcase_34 AC 430 ms
252,120 KB
testcase_35 AC 68 ms
85,120 KB
testcase_36 AC 69 ms
85,248 KB
testcase_37 AC 63 ms
70,912 KB
testcase_38 AC 105 ms
121,984 KB
testcase_39 AC 143 ms
164,224 KB
testcase_40 AC 142 ms
164,480 KB
testcase_41 AC 102 ms
121,472 KB
testcase_42 AC 142 ms
166,144 KB
testcase_43 AC 55 ms
71,296 KB
testcase_44 AC 84 ms
104,576 KB
testcase_45 AC 283 ms
246,144 KB
testcase_46 AC 73 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
d = [[] for _ in range(k + 1)]
d[0].append(0)
for x in map(int, input().split()):
    for i in range(k)[::-1]:
        for s in d[i]:
            d[i+1].append(s + x)
ans = sum(s % 998244353 <= s % 998 for s in d[k]) % 998
print(ans)
0