結果

問題 No.2561 みんな大好きmod 998
ユーザー ちーぴんちーぴん
提出日時 2023-12-02 14:50:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 4,000 ms
コード長 441 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 75,048 KB
最終ジャッジ日時 2023-12-02 14:50:46
合計ジャッジ時間 8,412 ms
ジャッジサーバーID
(参考情報)
judge11 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,460 KB
testcase_01 AC 67 ms
75,044 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 446 ms
75,044 KB
testcase_04 AC 430 ms
75,044 KB
testcase_05 AC 433 ms
75,044 KB
testcase_06 AC 468 ms
75,048 KB
testcase_07 AC 38 ms
53,460 KB
testcase_08 AC 38 ms
53,460 KB
testcase_09 AC 47 ms
61,860 KB
testcase_10 AC 37 ms
53,460 KB
testcase_11 AC 108 ms
75,048 KB
testcase_12 AC 38 ms
53,460 KB
testcase_13 AC 41 ms
53,460 KB
testcase_14 AC 38 ms
53,460 KB
testcase_15 AC 470 ms
75,044 KB
testcase_16 AC 38 ms
53,460 KB
testcase_17 AC 37 ms
53,460 KB
testcase_18 AC 44 ms
59,780 KB
testcase_19 AC 352 ms
75,044 KB
testcase_20 AC 44 ms
59,772 KB
testcase_21 AC 37 ms
53,460 KB
testcase_22 AC 38 ms
53,460 KB
testcase_23 AC 44 ms
59,772 KB
testcase_24 AC 38 ms
53,460 KB
testcase_25 AC 37 ms
53,460 KB
testcase_26 AC 129 ms
75,048 KB
testcase_27 AC 468 ms
75,044 KB
testcase_28 AC 157 ms
75,048 KB
testcase_29 AC 79 ms
75,048 KB
testcase_30 AC 148 ms
75,044 KB
testcase_31 AC 256 ms
75,044 KB
testcase_32 AC 92 ms
75,048 KB
testcase_33 AC 83 ms
75,048 KB
testcase_34 AC 458 ms
75,044 KB
testcase_35 AC 75 ms
75,048 KB
testcase_36 AC 76 ms
75,048 KB
testcase_37 AC 58 ms
73,000 KB
testcase_38 AC 109 ms
75,048 KB
testcase_39 AC 156 ms
75,044 KB
testcase_40 AC 148 ms
75,044 KB
testcase_41 AC 110 ms
75,048 KB
testcase_42 AC 159 ms
75,048 KB
testcase_43 AC 59 ms
73,000 KB
testcase_44 AC 93 ms
75,048 KB
testcase_45 AC 347 ms
75,044 KB
testcase_46 AC 84 ms
75,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations


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

"""
考察

全探索でも 28C8 = 3108105 通りで間に合いそう
"""
ans = 0
for comb in combinations(A, K):
    s998 = 0
    for a in comb:
        s998 += a
        s998 %= 998
    s998244353 = 0
    for a in comb:
        s998244353 += a
        s998244353 %= 998244353
    ans += s998244353 <= s998
    ans %= 998
print(ans)
0