結果

問題 No.2561 みんな大好きmod 998
ユーザー noriaokinoriaoki
提出日時 2023-12-02 15:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 4,000 ms
コード長 367 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 75,692 KB
最終ジャッジ日時 2024-09-26 19:00:53
合計ジャッジ時間 10,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,500 KB
testcase_01 AC 69 ms
75,188 KB
testcase_02 AC 36 ms
53,028 KB
testcase_03 AC 550 ms
75,488 KB
testcase_04 AC 553 ms
75,596 KB
testcase_05 AC 534 ms
75,620 KB
testcase_06 AC 536 ms
75,260 KB
testcase_07 AC 36 ms
52,064 KB
testcase_08 AC 36 ms
53,276 KB
testcase_09 AC 43 ms
60,932 KB
testcase_10 AC 36 ms
53,072 KB
testcase_11 AC 95 ms
75,184 KB
testcase_12 AC 36 ms
53,616 KB
testcase_13 AC 35 ms
52,424 KB
testcase_14 AC 34 ms
52,556 KB
testcase_15 AC 388 ms
75,468 KB
testcase_16 AC 36 ms
52,832 KB
testcase_17 AC 35 ms
53,156 KB
testcase_18 AC 41 ms
60,008 KB
testcase_19 AC 343 ms
75,688 KB
testcase_20 AC 42 ms
58,904 KB
testcase_21 AC 35 ms
52,160 KB
testcase_22 AC 33 ms
52,884 KB
testcase_23 AC 41 ms
59,776 KB
testcase_24 AC 37 ms
52,280 KB
testcase_25 AC 35 ms
51,632 KB
testcase_26 AC 110 ms
75,364 KB
testcase_27 AC 542 ms
75,116 KB
testcase_28 AC 133 ms
74,992 KB
testcase_29 AC 72 ms
75,184 KB
testcase_30 AC 164 ms
75,384 KB
testcase_31 AC 301 ms
75,492 KB
testcase_32 AC 81 ms
75,264 KB
testcase_33 AC 72 ms
75,148 KB
testcase_34 AC 552 ms
75,692 KB
testcase_35 AC 66 ms
75,304 KB
testcase_36 AC 66 ms
75,100 KB
testcase_37 AC 53 ms
69,944 KB
testcase_38 AC 92 ms
75,172 KB
testcase_39 AC 167 ms
75,360 KB
testcase_40 AC 168 ms
75,476 KB
testcase_41 AC 94 ms
75,320 KB
testcase_42 AC 133 ms
74,996 KB
testcase_43 AC 52 ms
70,148 KB
testcase_44 AC 79 ms
75,536 KB
testcase_45 AC 407 ms
75,560 KB
testcase_46 AC 72 ms
74,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
import itertools
ans = 0
for i in itertools.combinations(list(range(N)), K):
    S998 = 0
    S998244353 = 0
    for j in i:
        S998 += A[j]
        S998 %= 998
        S998244353 += A[j]
        S998244353 %= 998244353
    if S998 >= S998244353:
        ans += 1
        ans %= 998
print(ans)
0