結果

問題 No.797 Noelちゃんとピラミッド
ユーザー saio4016
提出日時 2019-03-17 23:50:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,083 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 167,864 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-08 07:19:30
合計ジャッジ時間 6,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other TLE * 1 -- * 59
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define endl "\n"
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define rrep(i, n) for(int i = ((int)(n)-1); i >= 0; i--)
#define all(x) (x).begin(),(x).end()

using namespace std;
using ll = long long;

typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> P;
 
const int INF = 1e9;
//const ll INF = 1e18;
const double EPS = 1e-10;
const int MOD = 1e9+7;
const double PI = acos(-1.0);

ll Pow(ll x,ll n){
	ll res = 1;
	while(n > 0){
		if(n&1) res = res * x % MOD;
		x = x * x % MOD;
		n >>= 1;
	}
	return res;
}

ll nCr(ll n,ll r){
	ll res = 1;
	for(int i = n; i > n-r; i--) res = res * i % MOD;
	for(int i = 1; i <= r; i++){
		res = res * Pow(i,MOD-2) % MOD;
	}
	return res; 
}

int main()
{
	int n;
	cin >> n;
	vi a(n);
	rep(i,n) cin >> a[i];
	ll ans = 0;
	for(int i = 0; i < n; i++){
		ans = ans + a[i]*nCr(n-1,i);
	}
	cout << ans << endl;
	/*
	ll a,b;
	cin >> a >> b;
	cout << nCr(a,b) << endl;
	*/
	return 0;
}
0