結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 22:40:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 598 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 96,260 KB
最終ジャッジ日時 2024-06-22 03:41:40
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
77,244 KB
testcase_01 AC 320 ms
93,724 KB
testcase_02 AC 128 ms
88,468 KB
testcase_03 AC 124 ms
86,984 KB
testcase_04 AC 304 ms
95,800 KB
testcase_05 AC 65 ms
75,660 KB
testcase_06 AC 569 ms
95,976 KB
testcase_07 AC 140 ms
90,852 KB
testcase_08 AC 142 ms
90,220 KB
testcase_09 AC 142 ms
89,396 KB
testcase_10 AC 62 ms
79,588 KB
testcase_11 AC 61 ms
79,352 KB
testcase_12 AC 290 ms
96,260 KB
testcase_13 AC 391 ms
96,012 KB
testcase_14 AC 465 ms
95,844 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 45 ms
63,056 KB
testcase_18 AC 45 ms
63,244 KB
testcase_19 RE -
testcase_20 AC 47 ms
64,392 KB
testcase_21 RE -
testcase_22 AC 59 ms
78,144 KB
testcase_23 AC 37 ms
53,092 KB
testcase_24 AC 37 ms
52,772 KB
testcase_25 AC 37 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,a,b=map(int,input().split())

mod=998244353
framod=[1]
def framod_calc(n, mod, a=1):
    for i in range(1,n+1):
        a=a * i % mod
        framod.append(a)
framod_calc(m, mod)

def permmod(n, k, mod):
    if n<k: return 0
    a=framod[n]
    c=framod[n-k]
    return (a * pow(c, mod-2, mod)) % mod

def combmod(n, k, mod):
    if n<k: return 0
    a=framod[n]
    b=framod[k]
    c=framod[n-k]
    return (a * pow(b, mod-2, mod) * pow(c, mod-2, mod)) % mod

tmp=0
for res in range(b-(n-1)*a+1):
    tmp+=combmod(n+res-2,res,mod)*(m-res-a*(n-1))
    tmp%=mod

print(tmp*permmod(n,n,mod)%mod)
0