結果

問題 No.2561 みんな大好きmod 998
ユーザー loop0919loop0919
提出日時 2023-11-05 23:27:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 4,000 ms
コード長 237 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,976 KB
最終ジャッジ日時 2024-09-25 22:53:15
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 67 ms
75,648 KB
testcase_02 AC 33 ms
51,584 KB
testcase_03 AC 366 ms
75,948 KB
testcase_04 AC 375 ms
75,648 KB
testcase_05 AC 382 ms
75,648 KB
testcase_06 AC 387 ms
75,648 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 44 ms
64,768 KB
testcase_10 AC 33 ms
51,712 KB
testcase_11 AC 98 ms
75,392 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 AC 34 ms
52,480 KB
testcase_14 AC 35 ms
52,352 KB
testcase_15 AC 379 ms
75,776 KB
testcase_16 AC 34 ms
52,480 KB
testcase_17 AC 34 ms
51,584 KB
testcase_18 AC 38 ms
57,856 KB
testcase_19 AC 282 ms
75,520 KB
testcase_20 AC 40 ms
60,672 KB
testcase_21 AC 31 ms
51,584 KB
testcase_22 AC 32 ms
52,096 KB
testcase_23 AC 35 ms
57,600 KB
testcase_24 AC 32 ms
51,968 KB
testcase_25 AC 32 ms
51,584 KB
testcase_26 AC 114 ms
75,648 KB
testcase_27 AC 378 ms
75,776 KB
testcase_28 AC 131 ms
75,416 KB
testcase_29 AC 70 ms
75,632 KB
testcase_30 AC 122 ms
75,520 KB
testcase_31 AC 200 ms
75,520 KB
testcase_32 AC 83 ms
75,520 KB
testcase_33 AC 70 ms
75,520 KB
testcase_34 AC 361 ms
75,392 KB
testcase_35 AC 71 ms
75,480 KB
testcase_36 AC 71 ms
75,648 KB
testcase_37 AC 58 ms
75,392 KB
testcase_38 AC 102 ms
75,676 KB
testcase_39 AC 123 ms
75,648 KB
testcase_40 AC 126 ms
75,616 KB
testcase_41 AC 96 ms
75,420 KB
testcase_42 AC 134 ms
75,976 KB
testcase_43 AC 56 ms
75,392 KB
testcase_44 AC 86 ms
75,680 KB
testcase_45 AC 282 ms
75,520 KB
testcase_46 AC 79 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

ans = 0
for cmb in combinations(A, K):
    S = sum(cmb)
    if  S % 998244353 <= S % 998:
        ans = (ans + 1) % 998

print(ans)
0