結果
問題 | No.1489 Repeat Cumulative Sum |
ユーザー | t33f |
提出日時 | 2021-04-23 23:05:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,448 bytes |
コンパイル時間 | 701 ms |
コンパイル使用メモリ | 69,664 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 08:40:07 |
合計ジャッジ時間 | 4,561 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 10 ms
6,400 KB |
testcase_02 | AC | 7 ms
5,504 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 11 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
#include <iostream> using namespace std; class ModComb { long long *fact, *facti; const int mod; public: explicit ModComb(int n, int m) : mod(m) { fact = new long long[n+1]; facti = new long long[n+1]; fact[0] = 1; facti[0] = 1; for (int i = 1; i <= n; i++) fact[i] = (fact[i-1] * i) % m; // calc 1/n! long long &inv = facti[n], pw = fact[n]; inv = 1; for (int e = mod-2; e > 0; e /= 2) { if (e&1) inv = inv * pw % mod; pw = pw * pw % mod; } for (int i = n-1; i > 0; i--) facti[i] = (facti[i+1] * (i+1)) % m; } ~ModComb() { if (fact) delete[] fact; if (facti) delete[] facti; } long long getFact(int n) const { return fact[n]; } long long getFactInv(int n) const { return facti[n]; } long long getComb(int n, int k) const { if (n < 0 || k < 0 || k > n) return 0; return fact[n] * facti[k] % mod * facti[n-k] % mod; } long long getPerm(int n, int k) const { if (n < 0 || k < 0 || k > n) return 0; return fact[n] * facti[n-k] % mod; } }; constexpr int M = 1000000007; int main() { int n, m; cin >> n >> m; ModComb mc(n+m, M); long long ans = 0; for (int i = 0; i < n-1; i++) { long long a; cin >> a; ans += a * mc.getComb(n + m - i - 2, m - 1) % M; } cout << ans % M << endl; }