結果

問題 No.802 だいたい等差数列
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-26 17:31:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 744 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 94,612 KB
最終ジャッジ日時 2024-10-26 17:31:40
合計ジャッジ時間 5,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
78,044 KB
testcase_01 AC 65 ms
74,400 KB
testcase_02 AC 68 ms
78,668 KB
testcase_03 AC 74 ms
78,604 KB
testcase_04 AC 68 ms
79,884 KB
testcase_05 AC 62 ms
74,532 KB
testcase_06 AC 75 ms
79,336 KB
testcase_07 AC 69 ms
78,700 KB
testcase_08 AC 62 ms
75,572 KB
testcase_09 AC 64 ms
76,584 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 101 ms
91,528 KB
testcase_13 RE -
testcase_14 AC 108 ms
91,680 KB
testcase_15 AC 100 ms
94,612 KB
testcase_16 AC 110 ms
91,528 KB
testcase_17 AC 97 ms
91,252 KB
testcase_18 AC 94 ms
91,412 KB
testcase_19 AC 110 ms
91,320 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 113 ms
91,660 KB
testcase_24 AC 100 ms
91,328 KB
testcase_25 AC 62 ms
74,936 KB
testcase_26 AC 99 ms
91,636 KB
testcase_27 AC 97 ms
91,392 KB
testcase_28 AC 114 ms
91,516 KB
testcase_29 RE -
testcase_30 AC 61 ms
74,752 KB
testcase_31 AC 63 ms
74,848 KB
testcase_32 AC 63 ms
74,336 KB
testcase_33 AC 71 ms
79,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, D1, D2 = map(int, input().split())
MOD = 10**9 + 7

num = 10**6
frac = [1] * num
inv_frac = [1] * num
for i in range(2, num):
    frac[i] = (frac[i-1] * i) % MOD

inv_frac[-1] = pow(frac[-1], MOD-2, MOD)
for i in range(num-1, 0, -1):
    inv_frac[i-1] = (inv_frac[i] * i) % MOD

def comb(n, r):
    if r < 0 or r > n:
        return 0
    
    return (frac[n] * (inv_frac[n-r] * inv_frac[r])%MOD) % MOD


def calc(n, m):
    # 合計 m個を n人で分ける
    # n人それぞれの最小個数は0個
    # {m+1}_H_{n-1} = {m+n-1}_C_{n-1}
    return comb(n+m-1, n-1)


M = M - 1 - D1*(N-1)
ans = calc(N+1, M)
for k in range(1, N):
    m = M - (D2-D1+1)*k
    ans += (-1)**(k%2) * comb(N-1, k) * calc(N+1, m)
    ans %= MOD

print(ans)
0