結果
問題 | No.1102 Remnants |
ユーザー | SSRS |
提出日時 | 2020-07-03 22:35:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,111 bytes |
コンパイル時間 | 1,904 ms |
コンパイル使用メモリ | 171,948 KB |
実行使用メモリ | 814,548 KB |
最終ジャッジ日時 | 2024-09-17 04:17:30 |
合計ジャッジ時間 | 4,761 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long MOD = 1000000007; long long modpow(long long a, long long b){ a %= MOD; long long res = 1; while (b > 0){ if (b % 2 == 1) res = res * a % MOD; a = a * a % MOD; b = b / 2; } return res; } long long modinv(long long a){ return modpow(a, MOD - 2); } vector<long long> mf; long long modfact(long long n){ if (n < mf.size()){ return mf[n]; } else { if (mf.empty()) mf.push_back(1); long long res = mf.back(); for (int i = mf.size(); i <= n; i++){ res = res * i % MOD; mf.push_back(res); } return res; } } long long modbinom(long long n, long long r){ long long res; res = modfact(n); res = res * modinv(modfact(r)) % MOD; res = res * modinv(modfact(n - r)) % MOD ; return res; } int main(){ int N, K; cin >> N >> K; vector<long long> A(N); for (int i = 0; i < N; i++){ cin >> A[i]; } long long ans = 0; for (int i = 0; i < N; i++){ long long tmp = A[i]; tmp *= modbinom(K + i, K); tmp %= MOD; tmp *= modbinom(K + N - i - 1, K); tmp %= MOD; ans += tmp; } cout << ans << endl; }