結果
問題 | No.1102 Remnants |
ユーザー | mot |
提出日時 | 2020-07-03 22:50:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,415 bytes |
コンパイル時間 | 2,289 ms |
コンパイル使用メモリ | 84,352 KB |
実行使用メモリ | 7,492 KB |
最終ジャッジ日時 | 2024-09-17 04:31:50 |
合計ジャッジ時間 | 33,535 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 951 ms
6,812 KB |
testcase_01 | AC | 957 ms
6,944 KB |
testcase_02 | AC | 943 ms
6,940 KB |
testcase_03 | AC | 947 ms
6,940 KB |
testcase_04 | AC | 940 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1,010 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 948 ms
6,944 KB |
testcase_09 | AC | 958 ms
6,940 KB |
testcase_10 | AC | 960 ms
6,944 KB |
testcase_11 | AC | 956 ms
6,940 KB |
testcase_12 | AC | 958 ms
6,940 KB |
testcase_13 | AC | 964 ms
6,940 KB |
testcase_14 | AC | 1,158 ms
6,944 KB |
testcase_15 | AC | 1,120 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1,095 ms
6,940 KB |
testcase_20 | AC | 978 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,124 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | AC | 960 ms
6,940 KB |
testcase_27 | AC | 1,055 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<100005){ fact1[i] = tmp; } if(i>=K && i<K+100005){ 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; }