結果
問題 | No.802 だいたい等差数列 |
ユーザー | てんぷら |
提出日時 | 2024-04-13 14:27:31 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,540 bytes |
コンパイル時間 | 4,668 ms |
コンパイル使用メモリ | 310,312 KB |
実行使用メモリ | 35,792 KB |
最終ジャッジ日時 | 2024-10-03 00:07:58 |
合計ジャッジ時間 | 7,267 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
27,904 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 35 ms
27,776 KB |
testcase_04 | AC | 35 ms
27,776 KB |
testcase_05 | AC | 36 ms
27,904 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
27,776 KB |
testcase_08 | WA | - |
testcase_09 | AC | 34 ms
27,776 KB |
testcase_10 | AC | 45 ms
34,944 KB |
testcase_11 | AC | 45 ms
35,456 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 48 ms
34,816 KB |
testcase_15 | AC | 48 ms
35,584 KB |
testcase_16 | AC | 46 ms
35,200 KB |
testcase_17 | AC | 46 ms
35,072 KB |
testcase_18 | AC | 47 ms
35,584 KB |
testcase_19 | AC | 48 ms
35,584 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 50 ms
35,584 KB |
testcase_24 | AC | 50 ms
35,584 KB |
testcase_25 | WA | - |
testcase_26 | AC | 37 ms
27,904 KB |
testcase_27 | WA | - |
testcase_28 | AC | 41 ms
30,080 KB |
testcase_29 | AC | 50 ms
35,584 KB |
testcase_30 | AC | 37 ms
27,776 KB |
testcase_31 | AC | 40 ms
27,776 KB |
testcase_32 | AC | 38 ms
27,904 KB |
testcase_33 | AC | 44 ms
32,384 KB |
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> using ll = long long; using ull = unsigned long long; #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++) using namespace std; using namespace atcoder; using mint = modint1000000007; const int inf = 1000000007; const ll longinf = 1ll << 60; namespace mod_util { vector<mint> fact, invfact, inv; void init(int n = 1 << 20) { fact.resize(n + 1); invfact.resize(n + 1); inv.resize(n + 1); fact[0] = 1; rep(i, n) fact[i + 1] = fact[i] * (i + 1); invfact[n] = fact[n].inv(); rep(i, n) invfact[n - i - 1] = invfact[n - i] * (n - i); rep(i, n) inv[i + 1] = fact[i] * invfact[i + 1]; } mint comb(int n, int k) { if(n < 0 || k < 0 || k > n) return 0; return fact[n] * invfact[k] * invfact[n - k]; } } // namespace mod_util using namespace mod_util; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); init(1 << 21); int n, m, d1, d2; cin >> n >> m >> d1 >> d2; vector<mint> bunshi(m + 1), bunbo(m + 1); rep(i, n) { ll p = ll(d1) * i + ll(d2 + 1) * (n - 1 - i); if(p > m) continue; if(i % 2 == 0) { bunshi[p] = comb(n - 1, i); } else { bunshi[p] = -comb(n - 1, i); } } rep(i, m + 1) { bunbo[i] = comb(n + i, i); } mint ans = 0; rep(i, m) { ans += bunshi[i] * bunbo[m - 1 - i]; } cout << ans.val() << endl; return 0; }