結果

問題 No.802 だいたい等差数列
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 21:50:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,409 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,936 KB
最終ジャッジ日時 2024-07-19 05:14:42
合計ジャッジ時間 8,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,496 KB
testcase_01 AC 42 ms
58,880 KB
testcase_02 AC 39 ms
57,984 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 38 ms
57,728 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 42 ms
60,288 KB
testcase_07 AC 44 ms
59,136 KB
testcase_08 AC 40 ms
58,240 KB
testcase_09 AC 40 ms
57,984 KB
testcase_10 AC 53 ms
65,920 KB
testcase_11 AC 57 ms
67,840 KB
testcase_12 AC 48 ms
62,336 KB
testcase_13 AC 60 ms
67,584 KB
testcase_14 AC 251 ms
82,560 KB
testcase_15 AC 527 ms
79,872 KB
testcase_16 AC 119 ms
82,688 KB
testcase_17 AC 42 ms
57,984 KB
testcase_18 AC 41 ms
58,112 KB
testcase_19 AC 208 ms
80,768 KB
testcase_20 AC 1,409 ms
85,376 KB
testcase_21 AC 1,374 ms
87,808 KB
testcase_22 AC 62 ms
67,840 KB
testcase_23 AC 530 ms
78,976 KB
testcase_24 AC 36 ms
51,840 KB
testcase_25 AC 34 ms
51,584 KB
testcase_26 AC 46 ms
60,032 KB
testcase_27 AC 47 ms
59,648 KB
testcase_28 AC 505 ms
80,640 KB
testcase_29 AC 1,401 ms
87,936 KB
testcase_30 AC 40 ms
51,840 KB
testcase_31 AC 40 ms
51,328 KB
testcase_32 AC 40 ms
51,328 KB
testcase_33 AC 86 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D = D2 - D1
x = (M - 1) - D1*(N - 1)

fac = [1 for _ in range(N+x+1)]
for i in range(N+x):
    fac[i+1] = (i+1)*fac[i]%mod

print(sum([(-1)**j * fac[x+N-j*(D+1)] * pow(N*fac[x-j*(D+1)]*fac[j]*fac[N-j-1], mod - 2, mod)\
           for j in range(min(N, 1+x//(D+1)))])%mod)
0