結果
問題 | No.1102 Remnants |
ユーザー | SSRS |
提出日時 | 2020-07-03 22:54:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,160 bytes |
コンパイル時間 | 1,445 ms |
コンパイル使用メモリ | 171,168 KB |
実行使用メモリ | 814,032 KB |
最終ジャッジ日時 | 2024-09-17 04:35:10 |
合計ジャッジ時間 | 4,217 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 modbinom2(long long n, long long r){ long long res = 1; for (int i = 0; i < r; i++){ res = res * (n - i) % MOD; res = res * modinv(i + 1) % 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]; } cout << modfact(K) << endl; /* long long ans = 0; for (int i = 0; i < N; i++){ long long tmp = A[i]; tmp *= modbinom2(K + i, i); tmp %= MOD; tmp *= modbinom2(K + N - i - 1, N - i - 1); tmp %= MOD; ans += tmp; } cout << ans << endl; */ }