結果

問題 No.2345 max(l,r)
ユーザー minimumminimum
提出日時 2023-06-09 23:02:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,070 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 134,912 KB
最終ジャッジ日時 2024-06-10 14:12:43
合計ジャッジ時間 19,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
81,792 KB
testcase_01 WA -
testcase_02 AC 327 ms
102,068 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 331 ms
102,612 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 220 ms
134,912 KB
testcase_23 AC 221 ms
134,528 KB
testcase_24 AC 160 ms
99,456 KB
testcase_25 AC 176 ms
99,364 KB
testcase_26 AC 175 ms
99,456 KB
testcase_27 AC 171 ms
99,328 KB
testcase_28 AC 159 ms
107,008 KB
testcase_29 AC 167 ms
112,896 KB
testcase_30 AC 146 ms
93,952 KB
testcase_31 AC 192 ms
126,408 KB
testcase_32 AC 169 ms
101,760 KB
testcase_33 AC 171 ms
106,880 KB
testcase_34 AC 147 ms
82,176 KB
testcase_35 AC 149 ms
93,824 KB
testcase_36 AC 150 ms
96,896 KB
testcase_37 AC 162 ms
102,016 KB
testcase_38 AC 188 ms
130,048 KB
testcase_39 AC 206 ms
130,372 KB
testcase_40 AC 211 ms
130,304 KB
testcase_41 AC 199 ms
130,176 KB
testcase_42 AC 191 ms
130,048 KB
testcase_43 AC 196 ms
129,984 KB
testcase_44 AC 201 ms
130,304 KB
testcase_45 AC 224 ms
130,176 KB
testcase_46 AC 215 ms
130,176 KB
testcase_47 AC 190 ms
130,432 KB
testcase_48 AC 177 ms
99,732 KB
testcase_49 AC 176 ms
99,496 KB
testcase_50 AC 191 ms
99,544 KB
testcase_51 AC 190 ms
99,516 KB
testcase_52 AC 188 ms
99,604 KB
testcase_53 AC 188 ms
99,756 KB
testcase_54 AC 185 ms
99,712 KB
testcase_55 AC 174 ms
99,840 KB
testcase_56 AC 176 ms
99,780 KB
testcase_57 AC 182 ms
99,584 KB
testcase_58 AC 192 ms
99,712 KB
testcase_59 AC 191 ms
100,320 KB
testcase_60 AC 189 ms
99,584 KB
testcase_61 AC 192 ms
100,016 KB
testcase_62 AC 193 ms
99,852 KB
testcase_63 AC 209 ms
99,840 KB
testcase_64 AC 193 ms
99,864 KB
testcase_65 AC 186 ms
99,968 KB
testcase_66 AC 201 ms
99,600 KB
testcase_67 AC 194 ms
99,640 KB
testcase_68 AC 759 ms
100,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import e


class Combination:

    def __init__(self, MX=10**6, MOD=998244353):
        self.MX = MX
        self.MOD = MOD
        self.fact = [1] * (MX + 1)
        self.inv = [1] * (MX + 1)
        self.f_inv = [1] * (MX + 1)
        for i in range(2, MX + 1):
            self.fact[i] = (self.fact[i - 1] * i) % self.MOD
            self.inv[i] = ( - (self.MOD // i) * (self.inv[self.MOD % i])) % self.MOD
            self.f_inv[i] = (self.f_inv[i - 1] * self.inv[i]) % self.MOD
    
    def invs(self, n):
        if n <= self.MX:
            return self.inv[n]
        else:
            return pow(n, self.MOD - 2, self.MOD)
    
    def p(self, n, r):
        if r > n or r < 0:
            return 0
        return (self.fact[n] * self.f_inv[r]) % self.MOD
    
    def c(self, n, r):
        if r > n or r < 0:
            return 0
        return (self.fact[n] * self.f_inv[r] * self.f_inv[n - r]) % self.MOD

com = Combination()

def solve():

    MOD = 998244353
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    dic = dict()
    for i in range(N):
        if N - A[i] not in dic:
            dic[N - A[i]] = 0
        dic[N - A[i]] += 1
    ls = list(dic.keys())
    ls.sort()

    lsum = 0
    rsum = 0
    L, R = [], []

    ans = 1
    for i in range(len(ls)):
        now = ls[i]
        j = now - lsum
        k = now - rsum
        if lsum + dic[now] == now:
            L.append(dic[now])
            lsum = now
            if rsum + dic[now] == now and i != len(ls) - 1:
                ans *= 2
                ans %= MOD
        elif rsum + dic[now] == now:
            R.append(dic[now])
            rsum = now
        elif j + k == dic[now] and j > 0 and k > 0:
            lsum = now
            rsum = now
            L.append(j)
            R.append(k)
            ans *= com.c(dic[now], j)
            ans %= MOD
        else:
            print(0)
            return
    ans *= com.c(M, len(L) + len(R))
    ans %= MOD
    print(ans)
    return
        

T = int(input())
for _ in range(T):
    solve()
0