結果

問題 No.802 だいたい等差数列
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 21:23:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 183,436 KB
最終ジャッジ日時 2024-09-18 21:23:20
合計ジャッジ時間 15,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 417 ms
180,728 KB
testcase_04 WA -
testcase_05 AC 387 ms
179,916 KB
testcase_06 AC 420 ms
180,332 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 385 ms
180,224 KB
testcase_17 AC 374 ms
180,008 KB
testcase_18 AC 389 ms
180,176 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 AC 380 ms
180,072 KB
testcase_25 AC 415 ms
179,872 KB
testcase_26 WA -
testcase_27 AC 386 ms
180,064 KB
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 380 ms
180,332 KB
testcase_31 AC 415 ms
180,032 KB
testcase_32 AC 384 ms
180,056 KB
testcase_33 AC 395 ms
180,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,l,r=map(int,input().split())
M=10**9+7
L=10**6
fa=[1,1]
fb=[1,1]
for i in range(2,L+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
c=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k else 0
a=0
for i in range(m-(1+l*(n-1))+1):
  if (m-(1+l*(n-1))-i)%(r-l+1)==0 and (m-(1+l*(n-1))-i)//(r-l+1)<=n-1:
    a+=((-1)**(i%2))*c(n+1-1+i,i)*((-1)**(((m-(1+l*(n-1))-i)//(r-l+1))%2))*c(n-1,(m-(1+l*(n-1))-i)//(r-l+1))
    a%=M
print(a)
0