結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
64,256 KB
testcase_01 AC 98 ms
80,384 KB
testcase_02 AC 79 ms
69,888 KB
testcase_03 AC 79 ms
69,632 KB
testcase_04 AC 98 ms
80,000 KB
testcase_05 AC 75 ms
66,816 KB
testcase_06 AC 116 ms
80,128 KB
testcase_07 AC 82 ms
70,656 KB
testcase_08 AC 82 ms
70,400 KB
testcase_09 AC 83 ms
70,272 KB
testcase_10 AC 72 ms
64,640 KB
testcase_11 AC 72 ms
64,640 KB
testcase_12 AC 98 ms
80,384 KB
testcase_13 AC 106 ms
80,512 KB
testcase_14 AC 109 ms
80,256 KB
testcase_15 AC 69 ms
64,768 KB
testcase_16 AC 71 ms
64,768 KB
testcase_17 AC 69 ms
64,640 KB
testcase_18 AC 69 ms
64,512 KB
testcase_19 AC 69 ms
64,512 KB
testcase_20 AC 69 ms
64,768 KB
testcase_21 AC 68 ms
64,640 KB
testcase_22 AC 69 ms
64,384 KB
testcase_23 AC 66 ms
63,872 KB
testcase_24 AC 66 ms
63,872 KB
testcase_25 AC 67 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