結果

問題 No.2561 みんな大好きmod 998
ユーザー hatonobuhatonobu
提出日時 2023-12-02 14:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 4,000 ms
コード長 564 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-26 17:34:53
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,656 KB
testcase_01 AC 74 ms
76,800 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 372 ms
76,264 KB
testcase_04 AC 369 ms
76,032 KB
testcase_05 AC 367 ms
76,288 KB
testcase_06 AC 371 ms
76,416 KB
testcase_07 AC 43 ms
54,528 KB
testcase_08 AC 42 ms
54,656 KB
testcase_09 AC 52 ms
67,456 KB
testcase_10 AC 41 ms
54,784 KB
testcase_11 AC 107 ms
76,160 KB
testcase_12 AC 41 ms
54,656 KB
testcase_13 AC 40 ms
54,400 KB
testcase_14 AC 41 ms
54,400 KB
testcase_15 AC 386 ms
76,024 KB
testcase_16 AC 44 ms
55,040 KB
testcase_17 AC 41 ms
54,784 KB
testcase_18 AC 45 ms
60,544 KB
testcase_19 AC 313 ms
76,160 KB
testcase_20 AC 51 ms
63,016 KB
testcase_21 AC 42 ms
54,144 KB
testcase_22 AC 43 ms
54,656 KB
testcase_23 AC 48 ms
59,904 KB
testcase_24 AC 44 ms
54,144 KB
testcase_25 AC 44 ms
54,784 KB
testcase_26 AC 130 ms
76,288 KB
testcase_27 AC 417 ms
76,372 KB
testcase_28 AC 148 ms
76,004 KB
testcase_29 AC 86 ms
76,160 KB
testcase_30 AC 136 ms
76,292 KB
testcase_31 AC 229 ms
76,416 KB
testcase_32 AC 93 ms
76,080 KB
testcase_33 AC 85 ms
76,288 KB
testcase_34 AC 396 ms
76,416 KB
testcase_35 AC 83 ms
76,160 KB
testcase_36 AC 83 ms
76,160 KB
testcase_37 AC 67 ms
76,224 KB
testcase_38 AC 106 ms
76,004 KB
testcase_39 AC 135 ms
76,032 KB
testcase_40 AC 142 ms
76,212 KB
testcase_41 AC 109 ms
75,956 KB
testcase_42 AC 149 ms
76,288 KB
testcase_43 AC 67 ms
76,160 KB
testcase_44 AC 93 ms
76,340 KB
testcase_45 AC 295 ms
76,336 KB
testcase_46 AC 89 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
import itertools
import heapq
import bisect
import math

#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353

N,K = mi()
A = li()
ans = 0
for e in itertools.combinations(A,K):
    S = sum(e)
    if S % 998 >= S % mod:
        ans += 1

print(ans % 998)
0