結果

問題 No.797 Noelちゃんとピラミッド
ユーザー yapooyapoo
提出日時 2019-03-15 21:53:03
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 1,308 ms
コンパイル使用メモリ 160,104 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 20:51:33
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
using namespace std;

ll mod = 1e9+7;

ll inv(ll x) {
    ll res = 1;
    ll k = mod - 2;
    ll y = x;
    while (k) {
        if (k & 1) res = (res * y) % mod;
        y = (y * y) % mod;
        k /= 2;
    }
    return res;
}

int main(){
    int N;  cin >> N;
    vector<int> a(N);
    for(int i=0; i<N; i++) cin >> a[i];

    ll ans = 0;
    ll c = 1;
    for(ll i=0; i<N; i++){
        ans += (c%mod)*a[i];
        ans = ans%mod;
        c = (((N-1-i)*c)%mod)*inv(i+1);
        c = c%mod;
    }
    cout << ans << endl;    
}
0