結果

問題 No.2561 みんな大好きmod 998
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-02 15:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,816 ms / 4,000 ms
コード長 403 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 486,428 KB
最終ジャッジ日時 2024-09-26 19:32:19
合計ジャッジ時間 22,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 112 ms
96,384 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 1,816 ms
486,320 KB
testcase_04 AC 1,803 ms
485,912 KB
testcase_05 AC 1,775 ms
485,908 KB
testcase_06 AC 1,797 ms
485,904 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 53 ms
60,672 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 214 ms
137,156 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 43 ms
51,712 KB
testcase_14 AC 44 ms
52,096 KB
testcase_15 AC 1,619 ms
486,428 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 54 ms
58,624 KB
testcase_19 AC 1,246 ms
362,524 KB
testcase_20 AC 56 ms
59,008 KB
testcase_21 AC 48 ms
51,712 KB
testcase_22 AC 48 ms
51,584 KB
testcase_23 AC 56 ms
58,624 KB
testcase_24 AC 48 ms
51,712 KB
testcase_25 AC 48 ms
51,840 KB
testcase_26 AC 311 ms
154,020 KB
testcase_27 AC 1,772 ms
486,292 KB
testcase_28 AC 353 ms
180,184 KB
testcase_29 AC 128 ms
103,552 KB
testcase_30 AC 356 ms
163,372 KB
testcase_31 AC 856 ms
288,780 KB
testcase_32 AC 173 ms
123,676 KB
testcase_33 AC 129 ms
103,296 KB
testcase_34 AC 1,766 ms
486,048 KB
testcase_35 AC 122 ms
104,832 KB
testcase_36 AC 125 ms
104,960 KB
testcase_37 AC 73 ms
77,184 KB
testcase_38 AC 213 ms
137,288 KB
testcase_39 AC 359 ms
163,240 KB
testcase_40 AC 366 ms
163,244 KB
testcase_41 AC 222 ms
137,532 KB
testcase_42 AC 351 ms
180,308 KB
testcase_43 AC 71 ms
77,312 KB
testcase_44 AC 169 ms
122,064 KB
testcase_45 AC 1,142 ms
362,124 KB
testcase_46 AC 131 ms
104,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

N, K = map(int, input().split())
A = list(map(int, input().split()))
C = list(combinations(range(N), K))
MOD1 = 998
MOD2 = 998244353
ans = 0
for cmb in C:
    S_998 = 0
    S_998244353 = 0
    for i in cmb:
        S_998 += A[i]
        S_998244353 += A[i]
        S_998 %= MOD1
        S_998244353 %= MOD2
    ans += S_998244353 <= S_998
    ans %= MOD1

print(ans)
0