結果

問題 No.2561 みんな大好きmod 998
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:40:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 4,000 ms
コード長 671 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 76,784 KB
最終ジャッジ日時 2024-09-26 17:07:00
合計ジャッジ時間 7,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

#############################################################

m1 = 998
m2 = 998244353

N,K = lmin()
A = lmin()
cnt = 0
for p in combinations(A,K):
    S = sum(p)
    if S % m1 >= S % m2:
        cnt += 1

print(cnt%m1)
0