結果

問題 No.802 だいたい等差数列
ユーザー tempura_pptempura_pp
提出日時 2019-03-09 19:42:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 818 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-07-01 19:32:08
合計ジャッジ時間 12,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 37 ms
11,008 KB
testcase_03 RE -
testcase_04 AC 33 ms
10,880 KB
testcase_05 RE -
testcase_06 AC 33 ms
11,008 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 33 ms
11,136 KB
testcase_10 AC 546 ms
89,728 KB
testcase_11 AC 793 ms
110,848 KB
testcase_12 AC 489 ms
56,960 KB
testcase_13 AC 753 ms
108,544 KB
testcase_14 AC 650 ms
81,280 KB
testcase_15 AC 348 ms
48,128 KB
testcase_16 AC 643 ms
84,608 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 558 ms
65,536 KB
testcase_20 AC 783 ms
88,960 KB
testcase_21 AC 922 ms
112,512 KB
testcase_22 AC 806 ms
112,512 KB
testcase_23 AC 451 ms
42,112 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 365 ms
34,304 KB
testcase_27 AC 315 ms
30,336 KB
testcase_28 AC 534 ms
57,472 KB
testcase_29 AC 911 ms
112,512 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 RE -
testcase_33 AC 216 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007

def mod_build(n) :
    fact = [1]*(n+1)
    inv_fact = [1]*(n+1)
    for i in range(1,n+1):
        fact[i] = fact[i-1]*i %mod
    inv_fact[n] = pow(fact[n],mod-2,mod)
    for i in range(n,0,-1):
        inv_fact[i-1] = inv_fact[i]*i %mod
    return fact, inv_fact
    
def comb(n,k,fact,inv_fact) : 
    if n<0 or k<0 or k>n :
        return 0
    return fact[n]*inv_fact[k]*inv_fact[n-k]%mod

def solve(n,m,d1,d2) :
    m = m-(n-1)*(d1-1)
    if m<0 :
        return 0
    d2=d2-d1+1
    fact, inv_fact = mod_build(m+1)
    ans = 0
    for i in range(0,n):
        ret=comb(m-d2*i,n,fact,inv_fact)*comb(n-1,i,fact,inv_fact)%mod
        if i%2 ==1 : 
            ans+=mod-ret
        else :
            ans+=ret
    return ans%mod

n, m, d1, d2 = map(int, input().split())
print(solve(n, m, d1, d2))
0