結果

問題 No.2141 Enumeratest
ユーザー terasaterasa
提出日時 2022-12-02 21:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 1,791 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 130,304 KB
最終ジャッジ日時 2024-10-09 22:44:34
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
67,584 KB
testcase_01 AC 78 ms
67,584 KB
testcase_02 AC 165 ms
89,344 KB
testcase_03 AC 458 ms
129,792 KB
testcase_04 AC 479 ms
130,304 KB
testcase_05 AC 89 ms
68,992 KB
testcase_06 AC 76 ms
67,840 KB
testcase_07 AC 96 ms
75,264 KB
testcase_08 AC 192 ms
91,904 KB
testcase_09 AC 158 ms
88,960 KB
testcase_10 AC 262 ms
96,640 KB
testcase_11 AC 425 ms
128,384 KB
testcase_12 AC 86 ms
71,680 KB
testcase_13 AC 147 ms
88,576 KB
testcase_14 AC 417 ms
127,360 KB
testcase_15 AC 242 ms
95,744 KB
testcase_16 AC 329 ms
122,112 KB
testcase_17 AC 320 ms
120,576 KB
testcase_18 AC 181 ms
90,240 KB
testcase_19 AC 378 ms
125,056 KB
testcase_20 AC 226 ms
93,440 KB
testcase_21 AC 226 ms
93,312 KB
testcase_22 AC 175 ms
89,984 KB
testcase_23 AC 168 ms
89,856 KB
testcase_24 AC 453 ms
129,280 KB
testcase_25 AC 187 ms
92,032 KB
testcase_26 AC 109 ms
74,496 KB
testcase_27 AC 199 ms
91,776 KB
testcase_28 AC 196 ms
90,752 KB
testcase_29 AC 155 ms
87,808 KB
testcase_30 AC 354 ms
123,520 KB
testcase_31 AC 248 ms
95,232 KB
testcase_32 AC 362 ms
122,112 KB
testcase_33 AC 219 ms
92,672 KB
testcase_34 AC 382 ms
125,056 KB
testcase_35 AC 100 ms
75,520 KB
testcase_36 AC 205 ms
91,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


class Combination:
    def __init__(self, N, mod):
        self.N = N
        self.mod = mod
        self.f = [None] * (N + 1)
        self.finv = [None] * (N + 1)
        self.inv = [None] * (N + 1)

        self.f[0] = 1
        self.f[1] = 1
        self.finv[0] = 1
        self.finv[1] = 1
        self.inv[1] = 1
        for i in range(2, N + 1):
            self.f[i] = self.f[i - 1] * i % self.mod
            self.inv[i] = self.mod - self.inv[self.mod % i] * (self.mod // i) % self.mod
            self.finv[i] = self.finv[i - 1] * self.inv[i] % self.mod

    def P(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * self.finv[n - k] % self.mod

    def C(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * (self.finv[k] * self.finv[n - k] % self.mod) % self.mod

    # 重複組合せ
    # n種類のものからk個選ぶ
    def H(self, n, k):
        if n == 0 and k == 0:
            return 1
        return self.C(k + n - 1, k)


N, M = readints()
mod = 998244353
comb = Combination(M, mod)
q, r = divmod(M, N)
ans = 1
rest = M
for i in range(r):
    ans *= comb.C(rest, q + 1)
    ans %= mod
    rest -= q + 1
for i in range(N - r):
    ans *= comb.C(rest, q)
    ans %= mod
    rest -= q
print(ans)
0