結果

問題 No.2561 みんな大好きmod 998
ユーザー detteiuudetteiuu
提出日時 2024-11-28 22:48:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 4,000 ms
コード長 271 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,072 KB
最終ジャッジ日時 2024-11-28 22:48:36
合計ジャッジ時間 9,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,304 KB
testcase_01 AC 73 ms
75,712 KB
testcase_02 AC 38 ms
52,440 KB
testcase_03 AC 495 ms
75,804 KB
testcase_04 AC 509 ms
76,072 KB
testcase_05 AC 498 ms
75,704 KB
testcase_06 AC 535 ms
75,736 KB
testcase_07 AC 39 ms
53,364 KB
testcase_08 AC 37 ms
52,788 KB
testcase_09 AC 50 ms
65,392 KB
testcase_10 AC 37 ms
52,616 KB
testcase_11 AC 123 ms
75,688 KB
testcase_12 AC 40 ms
52,392 KB
testcase_13 AC 39 ms
52,460 KB
testcase_14 AC 42 ms
54,180 KB
testcase_15 AC 522 ms
75,600 KB
testcase_16 AC 40 ms
52,272 KB
testcase_17 AC 39 ms
52,012 KB
testcase_18 AC 43 ms
59,400 KB
testcase_19 AC 373 ms
75,744 KB
testcase_20 AC 48 ms
61,300 KB
testcase_21 AC 40 ms
52,584 KB
testcase_22 AC 39 ms
52,616 KB
testcase_23 AC 45 ms
59,696 KB
testcase_24 AC 39 ms
52,460 KB
testcase_25 AC 39 ms
52,132 KB
testcase_26 AC 143 ms
75,856 KB
testcase_27 AC 522 ms
75,672 KB
testcase_28 AC 184 ms
75,944 KB
testcase_29 AC 90 ms
75,780 KB
testcase_30 AC 159 ms
75,892 KB
testcase_31 AC 279 ms
75,656 KB
testcase_32 AC 104 ms
75,656 KB
testcase_33 AC 89 ms
75,600 KB
testcase_34 AC 499 ms
75,700 KB
testcase_35 AC 85 ms
75,644 KB
testcase_36 AC 85 ms
75,784 KB
testcase_37 AC 68 ms
75,668 KB
testcase_38 AC 128 ms
75,592 KB
testcase_39 AC 163 ms
75,824 KB
testcase_40 AC 162 ms
75,732 KB
testcase_41 AC 123 ms
75,852 KB
testcase_42 AC 180 ms
75,608 KB
testcase_43 AC 67 ms
75,812 KB
testcase_44 AC 101 ms
75,648 KB
testcase_45 AC 367 ms
75,540 KB
testcase_46 AC 94 ms
75,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

MOD1 = 998
MOD2 = 998244353
ans = 0
for comb in combinations(A, K):
    SUM = sum(comb)
    if SUM%MOD2 <= SUM%MOD1:
        ans += 1
        ans %= MOD1

print(ans)
0