結果

問題 No.2561 みんな大好きmod 998
ユーザー ymskskyymsksky
提出日時 2024-04-09 22:53:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 4,000 ms
コード長 243 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,228 KB
最終ジャッジ日時 2024-10-01 23:30:07
合計ジャッジ時間 7,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,964 KB
testcase_01 AC 71 ms
76,132 KB
testcase_02 AC 38 ms
53,160 KB
testcase_03 AC 357 ms
75,844 KB
testcase_04 AC 363 ms
75,324 KB
testcase_05 AC 367 ms
75,660 KB
testcase_06 AC 385 ms
75,592 KB
testcase_07 AC 37 ms
53,548 KB
testcase_08 AC 38 ms
52,160 KB
testcase_09 AC 49 ms
65,756 KB
testcase_10 AC 37 ms
52,824 KB
testcase_11 AC 110 ms
75,992 KB
testcase_12 AC 37 ms
52,276 KB
testcase_13 AC 37 ms
53,500 KB
testcase_14 AC 38 ms
53,788 KB
testcase_15 AC 386 ms
75,588 KB
testcase_16 AC 38 ms
52,648 KB
testcase_17 AC 37 ms
52,628 KB
testcase_18 AC 43 ms
57,940 KB
testcase_19 AC 319 ms
75,604 KB
testcase_20 AC 45 ms
61,512 KB
testcase_21 AC 36 ms
52,064 KB
testcase_22 AC 37 ms
52,744 KB
testcase_23 AC 42 ms
58,940 KB
testcase_24 AC 38 ms
52,072 KB
testcase_25 AC 38 ms
52,064 KB
testcase_26 AC 131 ms
76,064 KB
testcase_27 AC 402 ms
75,604 KB
testcase_28 AC 145 ms
75,644 KB
testcase_29 AC 80 ms
75,724 KB
testcase_30 AC 131 ms
75,608 KB
testcase_31 AC 211 ms
75,600 KB
testcase_32 AC 94 ms
75,560 KB
testcase_33 AC 80 ms
76,032 KB
testcase_34 AC 359 ms
76,228 KB
testcase_35 AC 79 ms
75,588 KB
testcase_36 AC 77 ms
75,604 KB
testcase_37 AC 65 ms
75,604 KB
testcase_38 AC 103 ms
75,608 KB
testcase_39 AC 135 ms
75,640 KB
testcase_40 AC 132 ms
75,848 KB
testcase_41 AC 103 ms
75,824 KB
testcase_42 AC 140 ms
75,736 KB
testcase_43 AC 67 ms
75,812 KB
testcase_44 AC 92 ms
75,536 KB
testcase_45 AC 294 ms
75,772 KB
testcase_46 AC 91 ms
75,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

n, k = map(int, input().split())
al = list(map(int, input().split()))
mod0 = 998
mod1 = 998244353
ans = 0
for comb in combinations(al, k):
    s = sum(comb)
    ans += s % mod0 >= s % mod1
print(ans % mod0)
0