結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-03 01:04:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,055 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 80,684 KB
最終ジャッジ日時 2024-05-01 21:55:25
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
64,000 KB
testcase_01 AC 88 ms
80,640 KB
testcase_02 AC 71 ms
69,760 KB
testcase_03 AC 68 ms
69,632 KB
testcase_04 AC 86 ms
79,872 KB
testcase_05 AC 67 ms
66,304 KB
testcase_06 AC 104 ms
80,128 KB
testcase_07 AC 72 ms
70,528 KB
testcase_08 AC 73 ms
70,528 KB
testcase_09 AC 74 ms
70,656 KB
testcase_10 AC 64 ms
64,256 KB
testcase_11 AC 64 ms
64,640 KB
testcase_12 AC 88 ms
80,000 KB
testcase_13 AC 93 ms
80,524 KB
testcase_14 AC 99 ms
80,684 KB
testcase_15 AC 65 ms
64,256 KB
testcase_16 AC 63 ms
64,640 KB
testcase_17 AC 62 ms
64,384 KB
testcase_18 AC 61 ms
64,512 KB
testcase_19 AC 64 ms
64,512 KB
testcase_20 AC 65 ms
64,512 KB
testcase_21 AC 66 ms
64,384 KB
testcase_22 AC 64 ms
64,512 KB
testcase_23 AC 59 ms
63,360 KB
testcase_24 AC 60 ms
63,616 KB
testcase_25 AC 62 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Combi():
    def __init__(self, N, mod):
        self.power = [1 for _ in range(N+1)]
        self.rev = [1 for _ in range(N+1)]
        self.mod = mod
        for i in range(2, N+1):
            self.power[i] = (self.power[i-1]*i) % self.mod
        self.rev[N] = pow(self.power[N], self.mod-2, self.mod)
        for j in range(N, 0, -1):
            self.rev[j-1] = (self.rev[j]*j) % self.mod

    def com(self, K, R):
        if K < R:
            return 0
        else:
            return ((self.power[K])*(self.rev[K-R])*(self.rev[R])) % self.mod

    def pom(self, K, R):
        if K < R:
            return 0
        else:
            return (self.power[K])*(self.rev[K-R]) % self.mod


def main():
    mod = 998244353
    N, M, A, B = map(int, input().split())
    Com = Combi(3*10**5, mod)
    ans = 0
    for k in range(A, B+1):
        if k >= A*(N-1):
            ans += Com.com(k-(A-1)*(N-1)-1, N-2)*(M-k)
    for i in range(1, N+1):
        ans *= i
        ans %= mod
    print(ans)
    return


if __name__ == "__main__":
    main()
0