結果
問題 | No.802 だいたい等差数列 |
ユーザー | bachoppi |
提出日時 | 2020-08-06 17:52:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,491 bytes |
コンパイル時間 | 1,028 ms |
コンパイル使用メモリ | 119,400 KB |
実行使用メモリ | 26,972 KB |
最終ジャッジ日時 | 2024-09-21 14:52:51 |
合計ジャッジ時間 | 9,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
26,880 KB |
testcase_01 | AC | 32 ms
26,868 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 32 ms
26,868 KB |
testcase_07 | WA | - |
testcase_08 | AC | 31 ms
26,880 KB |
testcase_09 | AC | 31 ms
26,972 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 34 ms
26,752 KB |
testcase_15 | WA | - |
testcase_16 | AC | 31 ms
26,736 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 30 ms
26,924 KB |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 33 ms
26,752 KB |
testcase_24 | RE | - |
testcase_25 | AC | 32 ms
26,752 KB |
testcase_26 | AC | 34 ms
26,752 KB |
testcase_27 | RE | - |
testcase_28 | AC | 34 ms
26,876 KB |
testcase_29 | RE | - |
testcase_30 | AC | 26 ms
26,952 KB |
testcase_31 | AC | 26 ms
26,880 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 26 ms
26,880 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; #define pai 3.141592653589793238462643383279 const int MAX = 1000000; const int MOD = 1000000007; long long fac[MAX], finv[MAX], inv[MAX]; // テーブルを作る前処理 void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++){ fac[i] = fac[i - 1] * i % MOD; inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD; finv[i] = finv[i - 1] * inv[i] % MOD; } } // 二項係数計算 long long COM(int n, int k){ if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } int main(){ int n, m, d1, d2; cin >> n >> m >> d1 >> d2; int zenbu = m-1-(n-1)*d1; if(zenbu<0){ cout << 0 << endl; return 0; } COMinit(); ll ans = 0; rep(i, n){ if(i%2){ ans-=COM(zenbu+n-(d2-d1+1)*i, n)*COM(n-1, i)%mod; ans%=mod; } else{ ans+=COM(zenbu+n-(d2-d1+1)*i, n)*COM(n-1, i); ans%=mod; } //cout << ans << endl; } cout << ans << endl; }