結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 22:42:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 95,996 KB
最終ジャッジ日時 2024-06-22 03:41:45
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
76,880 KB
testcase_01 AC 322 ms
93,904 KB
testcase_02 AC 129 ms
89,008 KB
testcase_03 AC 121 ms
85,816 KB
testcase_04 AC 307 ms
95,956 KB
testcase_05 AC 66 ms
75,048 KB
testcase_06 AC 572 ms
95,876 KB
testcase_07 AC 142 ms
89,796 KB
testcase_08 AC 142 ms
90,324 KB
testcase_09 AC 143 ms
89,540 KB
testcase_10 AC 61 ms
79,456 KB
testcase_11 AC 60 ms
80,028 KB
testcase_12 AC 290 ms
95,748 KB
testcase_13 AC 393 ms
95,996 KB
testcase_14 AC 467 ms
95,832 KB
testcase_15 AC 37 ms
52,416 KB
testcase_16 AC 38 ms
52,628 KB
testcase_17 AC 37 ms
53,752 KB
testcase_18 AC 36 ms
52,684 KB
testcase_19 AC 37 ms
52,368 KB
testcase_20 AC 37 ms
52,276 KB
testcase_21 AC 37 ms
52,256 KB
testcase_22 AC 58 ms
76,892 KB
testcase_23 AC 38 ms
53,016 KB
testcase_24 AC 37 ms
52,868 KB
testcase_25 AC 37 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,a,b=map(int,input().split())
if a*(n-1)>b: 
    print(0)
    exit()

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