結果
問題 | No.1102 Remnants |
ユーザー | mot |
提出日時 | 2020-07-03 22:52:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,577 ms / 2,000 ms |
コード長 | 1,415 bytes |
コンパイル時間 | 1,356 ms |
コンパイル使用メモリ | 83,408 KB |
実行使用メモリ | 8,000 KB |
最終ジャッジ日時 | 2024-09-17 04:33:08 |
合計ジャッジ時間 | 37,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,056 ms
6,812 KB |
testcase_01 | AC | 1,056 ms
6,812 KB |
testcase_02 | AC | 1,054 ms
6,944 KB |
testcase_03 | AC | 1,054 ms
6,940 KB |
testcase_04 | AC | 1,058 ms
6,940 KB |
testcase_05 | AC | 1,458 ms
7,620 KB |
testcase_06 | AC | 1,123 ms
6,940 KB |
testcase_07 | AC | 1,577 ms
8,000 KB |
testcase_08 | AC | 1,060 ms
6,940 KB |
testcase_09 | AC | 1,078 ms
6,944 KB |
testcase_10 | AC | 1,057 ms
6,944 KB |
testcase_11 | AC | 1,069 ms
6,940 KB |
testcase_12 | AC | 1,079 ms
6,940 KB |
testcase_13 | AC | 1,077 ms
6,940 KB |
testcase_14 | AC | 1,284 ms
7,168 KB |
testcase_15 | AC | 1,226 ms
7,040 KB |
testcase_16 | AC | 1,510 ms
7,876 KB |
testcase_17 | AC | 1,485 ms
7,876 KB |
testcase_18 | AC | 1,506 ms
7,876 KB |
testcase_19 | AC | 1,206 ms
6,944 KB |
testcase_20 | AC | 1,099 ms
6,940 KB |
testcase_21 | AC | 1,324 ms
7,364 KB |
testcase_22 | AC | 1,448 ms
7,620 KB |
testcase_23 | AC | 1,351 ms
7,424 KB |
testcase_24 | AC | 1,268 ms
7,112 KB |
testcase_25 | AC | 1,515 ms
7,876 KB |
testcase_26 | AC | 1,080 ms
6,940 KB |
testcase_27 | AC | 1,172 ms
6,940 KB |
ソースコード
#include<iostream> #include<iomanip> #include<cmath> #include<string> #include<vector> #include<list> #include<algorithm> #include<map> #include<set> #include<queue> #include<stack> using namespace std; typedef long long ll; #define fi first #define se second #define mp make_pair #define rep(i, n) for(int i=0;i<n;++i) #define rrep(i, n) for(int i=n;i>=0;--i) const int inf=1e9+7; const ll mod=1e9+7; const ll big=1e18; const double PI=2*asin(1); ll fact1[200005]; ll fact2[200005]; ll N, K; ll getcomb(ll a, ll b){ ll ue = fact2[a-K]; ll shita1=1, shita2=1, tmpshita1, tmpshita2; ll h = mod-2; ll two; while(h>0){ tmpshita1 = fact1[b]; tmpshita2 = fact2[a-b-K]; two = 1; while(2*two<=h){ two *= 2; tmpshita1 *= tmpshita1; tmpshita1 %= mod; tmpshita2 *= tmpshita2; tmpshita2 %= mod; } h -= two; shita1 *= tmpshita1; shita2 *= tmpshita2; shita1 %= mod; shita2 %= mod; } return ue*shita1%mod*shita2%mod; } int main() { fact1[0] = 1; ll tmp = 1; cin>>N>>K; for(ll i=0;i<200000000;++i){ if(i>0) tmp *= i; tmp %= mod; if(i<200005){ fact1[i] = tmp; } if(i>=K && i<K+200005){ fact2[i-K] = tmp; } } ll A[N]; for(int i=0;i<N;++i) cin>>A[i]; ll ans = 0; for(int i=0;i<N;++i){ ans += A[i]*getcomb(K+i, i)%mod*getcomb(K+N-i-1, N-i-1)%mod; ans %= mod; } cout<<ans<<endl; }