結果

問題 No.797 Noelちゃんとピラミッド
ユーザー kyort0n
提出日時 2019-03-15 21:30:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 160,672 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-07-01 20:28:06
合計ジャッジ時間 18,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;

#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
const ll mod = 1000000007;
ll inv[1000000];
ll FactorialInv[1000000];
ll Factorial[1000000];
ll beki(ll a, ll b){
    if(b == 0){
        return 1;
    }
    ll ans = beki(a, b / 2);
    ans = ans * ans % mod;
    if(b % 2 == 1){
        ans = ans * a % mod;
    }
    return ans;
}
void init_combination(){
    inv[1] = 1;
    FactorialInv[1] = 1;
    Factorial[1] = 1;
    for(int i = 2; i < 1000000; i++){
        inv[i] = beki(i, mod - 2);
        Factorial[i] = Factorial[i - 1] * i % mod;
        FactorialInv[i] = FactorialInv[i - 1] * inv[i] % mod;
    }
}
ll combination(ll a, ll b){
    if((a == b) || (b == 0)){
        return 1;
    }
    ll ans = Factorial[a] * FactorialInv[b] % mod;
    ans = ans * FactorialInv[a - b] % mod;
    return ans;
}
int main() {
    //cout.precision(10);
    init_combination();
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n;
    cin >> n;
    ll ans = 0;
    for(ll i = 1; i <= n; i++) {
        ll a;
        cin >> a;
        ans += combination(n - 1, i - 1) * a;
        ans %= mod;
    }
    cout << ans << endl;
    return 0;
}
0