結果

問題 No.2561 みんな大好きmod 998
ユーザー 👑 KazunKazun
提出日時 2024-01-21 00:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,101 ms / 4,000 ms
コード長 407 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,528 KB
最終ジャッジ日時 2024-09-28 05:47:57
合計ジャッジ時間 15,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,908 KB
testcase_01 AC 106 ms
76,064 KB
testcase_02 AC 38 ms
53,608 KB
testcase_03 AC 1,101 ms
76,076 KB
testcase_04 AC 1,062 ms
76,368 KB
testcase_05 AC 1,054 ms
76,376 KB
testcase_06 AC 1,098 ms
76,424 KB
testcase_07 AC 38 ms
52,460 KB
testcase_08 AC 36 ms
52,264 KB
testcase_09 AC 54 ms
71,040 KB
testcase_10 AC 35 ms
52,552 KB
testcase_11 AC 199 ms
76,256 KB
testcase_12 AC 36 ms
53,508 KB
testcase_13 AC 37 ms
53,076 KB
testcase_14 AC 38 ms
53,904 KB
testcase_15 AC 1,084 ms
76,492 KB
testcase_16 AC 37 ms
52,868 KB
testcase_17 AC 37 ms
52,124 KB
testcase_18 AC 44 ms
60,840 KB
testcase_19 AC 786 ms
76,404 KB
testcase_20 AC 50 ms
64,876 KB
testcase_21 AC 36 ms
52,812 KB
testcase_22 AC 36 ms
52,824 KB
testcase_23 AC 43 ms
61,168 KB
testcase_24 AC 37 ms
53,684 KB
testcase_25 AC 35 ms
53,200 KB
testcase_26 AC 250 ms
75,988 KB
testcase_27 AC 1,079 ms
76,280 KB
testcase_28 AC 325 ms
75,988 KB
testcase_29 AC 136 ms
75,972 KB
testcase_30 AC 298 ms
76,336 KB
testcase_31 AC 576 ms
76,112 KB
testcase_32 AC 168 ms
76,168 KB
testcase_33 AC 130 ms
76,368 KB
testcase_34 AC 1,020 ms
76,144 KB
testcase_35 AC 119 ms
75,992 KB
testcase_36 AC 122 ms
76,372 KB
testcase_37 AC 86 ms
76,068 KB
testcase_38 AC 195 ms
76,528 KB
testcase_39 AC 302 ms
76,132 KB
testcase_40 AC 307 ms
76,284 KB
testcase_41 AC 197 ms
76,232 KB
testcase_42 AC 313 ms
75,960 KB
testcase_43 AC 84 ms
76,192 KB
testcase_44 AC 157 ms
76,388 KB
testcase_45 AC 766 ms
76,120 KB
testcase_46 AC 131 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    from itertools import combinations

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

    Mod1 = 998; Mod2 = 998244353
    ans = 0
    for x in combinations(range(N), r = K):
        S = sum(A[x[i]] for i in range(K))
        if S % Mod2 <= S % Mod1:
            ans += 1
    return ans % Mod1

#==================================================
print(solve())
0