結果

問題 No.802 だいたい等差数列
ユーザー 37zigen37zigen
提出日時 2019-03-18 02:32:26
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 809 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 158,544 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-07-08 08:02:22
合計ジャッジ時間 26,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
19,072 KB
testcase_01 AC 528 ms
18,816 KB
testcase_02 AC 531 ms
18,816 KB
testcase_03 AC 536 ms
19,072 KB
testcase_04 AC 537 ms
19,072 KB
testcase_05 AC 543 ms
19,072 KB
testcase_06 AC 537 ms
18,944 KB
testcase_07 AC 535 ms
19,072 KB
testcase_08 AC 535 ms
18,944 KB
testcase_09 AC 548 ms
18,944 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 565 ms
18,944 KB
testcase_15 AC 565 ms
18,944 KB
testcase_16 AC 540 ms
18,944 KB
testcase_17 AC 533 ms
19,072 KB
testcase_18 AC 532 ms
18,944 KB
testcase_19 AC 535 ms
18,944 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 572 ms
18,944 KB
testcase_24 RE -
testcase_25 AC 541 ms
18,944 KB
testcase_26 AC 526 ms
18,944 KB
testcase_27 RE -
testcase_28 AC 566 ms
18,944 KB
testcase_29 RE -
testcase_30 AC 583 ms
18,944 KB
testcase_31 AC 537 ms
18,944 KB
testcase_32 AC 523 ms
18,944 KB
testcase_33 AC 528 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

long long mo=(long long)1e9+7;

long long fac[1000000];
long long ifac[1000000];

long long modpow(long long a,long long n){
  long long ret=1;
  for(;n>0;n>>=1,a=a*a%mo){
    if(n%2==1){
      ret=ret*a%mo;
    }
  }
  return ret;
}

long long inv(long a){
  return modpow(a,mo-2);
}

long long comb(int n,int k){
  return fac[n]*ifac[k]%mo*ifac[n-k]%mo;
}

void build(){
  fac[0]=1;
  for(int i=1;i<1000000;++i){
    fac[i]=fac[i-1]*i%mo;
  }
  for(int i=0;i<1000000;++i){
    ifac[i]=inv(fac[i]);
  }
}


int main(){
  build();
  int N,M,D1,D2;
  std::cin>>N>>M>>D1>>D2;
  long long ans=0;
  for(int i=0;i<=N-1;++i){
    int res=M-1-D1*(N-1)-i*(D2-D1+1);
    if(res<0)continue;
    ans=(ans+modpow(mo-1,i)*comb(N-1,i)%mo*comb(N+res,res)%mo)%mo;
  }
  std::cout<<ans<<std::endl;
}
0