結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,528 KB
testcase_01 AC 74 ms
76,068 KB
testcase_02 AC 43 ms
54,400 KB
testcase_03 AC 369 ms
76,020 KB
testcase_04 AC 374 ms
76,404 KB
testcase_05 AC 407 ms
76,784 KB
testcase_06 AC 415 ms
76,288 KB
testcase_07 AC 44 ms
54,912 KB
testcase_08 AC 41 ms
54,400 KB
testcase_09 AC 51 ms
66,944 KB
testcase_10 AC 41 ms
54,528 KB
testcase_11 AC 105 ms
76,484 KB
testcase_12 AC 43 ms
54,528 KB
testcase_13 AC 42 ms
54,912 KB
testcase_14 AC 41 ms
55,040 KB
testcase_15 AC 396 ms
76,288 KB
testcase_16 AC 43 ms
54,656 KB
testcase_17 AC 43 ms
54,144 KB
testcase_18 AC 45 ms
59,904 KB
testcase_19 AC 301 ms
76,032 KB
testcase_20 AC 49 ms
63,488 KB
testcase_21 AC 42 ms
54,572 KB
testcase_22 AC 41 ms
54,528 KB
testcase_23 AC 46 ms
60,288 KB
testcase_24 AC 42 ms
53,888 KB
testcase_25 AC 43 ms
54,400 KB
testcase_26 AC 124 ms
76,268 KB
testcase_27 AC 410 ms
76,216 KB
testcase_28 AC 154 ms
76,160 KB
testcase_29 AC 86 ms
76,200 KB
testcase_30 AC 142 ms
76,288 KB
testcase_31 AC 227 ms
76,288 KB
testcase_32 AC 99 ms
76,012 KB
testcase_33 AC 87 ms
75,904 KB
testcase_34 AC 381 ms
76,324 KB
testcase_35 AC 80 ms
76,032 KB
testcase_36 AC 79 ms
76,160 KB
testcase_37 AC 67 ms
76,072 KB
testcase_38 AC 110 ms
76,032 KB
testcase_39 AC 146 ms
76,276 KB
testcase_40 AC 144 ms
76,508 KB
testcase_41 AC 115 ms
76,420 KB
testcase_42 AC 155 ms
75,904 KB
testcase_43 AC 69 ms
76,160 KB
testcase_44 AC 92 ms
76,160 KB
testcase_45 AC 305 ms
76,672 KB
testcase_46 AC 85 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

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