結果

問題 No.2561 みんな大好きmod 998
ユーザー i_takui_taku
提出日時 2024-06-07 13:44:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 504 ms / 4,000 ms
コード長 251 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 76,212 KB
最終ジャッジ日時 2024-06-07 13:44:47
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,528 KB
testcase_01 AC 72 ms
75,600 KB
testcase_02 AC 37 ms
52,364 KB
testcase_03 AC 480 ms
75,636 KB
testcase_04 AC 498 ms
75,948 KB
testcase_05 AC 484 ms
75,848 KB
testcase_06 AC 501 ms
75,712 KB
testcase_07 AC 38 ms
54,352 KB
testcase_08 AC 35 ms
52,816 KB
testcase_09 AC 47 ms
66,588 KB
testcase_10 AC 36 ms
52,376 KB
testcase_11 AC 111 ms
76,088 KB
testcase_12 AC 36 ms
53,764 KB
testcase_13 AC 37 ms
52,648 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 485 ms
75,908 KB
testcase_16 AC 36 ms
52,708 KB
testcase_17 AC 37 ms
53,632 KB
testcase_18 AC 43 ms
58,128 KB
testcase_19 AC 361 ms
75,856 KB
testcase_20 AC 44 ms
62,188 KB
testcase_21 AC 37 ms
52,656 KB
testcase_22 AC 37 ms
52,496 KB
testcase_23 AC 42 ms
58,444 KB
testcase_24 AC 37 ms
53,168 KB
testcase_25 AC 37 ms
52,328 KB
testcase_26 AC 136 ms
75,612 KB
testcase_27 AC 504 ms
76,140 KB
testcase_28 AC 166 ms
75,728 KB
testcase_29 AC 85 ms
75,520 KB
testcase_30 AC 153 ms
75,732 KB
testcase_31 AC 253 ms
75,768 KB
testcase_32 AC 100 ms
75,800 KB
testcase_33 AC 82 ms
75,696 KB
testcase_34 AC 491 ms
75,656 KB
testcase_35 AC 78 ms
76,212 KB
testcase_36 AC 79 ms
75,792 KB
testcase_37 AC 65 ms
76,016 KB
testcase_38 AC 112 ms
75,860 KB
testcase_39 AC 148 ms
75,772 KB
testcase_40 AC 153 ms
76,084 KB
testcase_41 AC 119 ms
75,948 KB
testcase_42 AC 168 ms
75,664 KB
testcase_43 AC 64 ms
76,132 KB
testcase_44 AC 97 ms
75,896 KB
testcase_45 AC 346 ms
75,760 KB
testcase_46 AC 90 ms
75,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations


N, K = map(int, input().split())
A = list(map(int, input().split()))
m1 = 998
m2 = 998_244_353
ans = 0
for comb in combinations(A, K):
    sc = sum(comb)
    if sc % m1 >= sc % m2:
        ans += 1
print(ans % m1)
0