結果
| 問題 | No.797 Noelちゃんとピラミッド |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2019-03-16 01:02:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 1,946 bytes |
| 記録 | |
| コンパイル時間 | 1,701 ms |
| コンパイル使用メモリ | 178,448 KB |
| 実行使用メモリ | 7,168 KB |
| 最終ジャッジ日時 | 2024-07-01 22:12:48 |
| 合計ジャッジ時間 | 4,653 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 60 |
ソースコード
#include <bits/stdc++.h>
#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))
using ll = std::int64_t;
using P = std::tuple<int,int>;
template <typename T>
std::tuple<T, T, T> extgcd(T a, T b){
T s1 = 1, t1 = 0, s2 = 0, t2 = 1;
while(b != 0){
std::tie(s1, t1, s2, t2) = std::make_tuple(s2, t2, s1 - (a / b) * s2, t1 - (a / b) * t2);
std::tie(a, b) = std::make_tuple(b, a % b);
}
return std::make_tuple(s1, t1, a);
}
// 注意: a と mod が互いに素である必要がある
template <typename T>
T mod_inverse(T a, T mod){
T b;
std::tie(b, std::ignore, std::ignore) = extgcd(a, mod);
if(b < 0){b += mod;}
return b;
}
template <typename T>
struct Combinatorics{
T modulo;
std::vector<T> fact, inv_fact;
Combinatorics(T max, T modulo) : modulo(modulo), fact(max + 1), inv_fact(max + 1) {
fact[0] = 1;
for(T i=1;i<=max;++i){
fact[i] = i * fact[i - 1] % modulo;
}
inv_fact[max] = mod_inverse(fact[max], modulo);
for(T i=max;i>0;--i){
inv_fact[i - 1] = i * inv_fact[i] % modulo;
}
}
T nPk(T n, T k){
if(n < k){return 0;}
return fact[n] * inv_fact[n - k] % modulo;
}
T nCk(T n, T k){
if(n < k){return 0;}
return fact[n] * inv_fact[k] % modulo * inv_fact[n - k] % modulo;
}
T nHk(T n, T k){
if(n == 0 && k == 0){return 1;}
return nCk(n + k - 1, k);
}
};
constexpr ll MOD = 1'000'000'007;
Combinatorics<ll> comb(200100, MOD);
int N;
ll A[100100];
int main(){
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
std::cin >> N;
for(int i=0;i<N;++i){
std::cin >> A[i];
}
ll v = 0;
for(int i=0;i<N;++i){
v = (v + A[i] * comb.nCk(N - 1, i)) % MOD;
}
std::cout << v << std::endl;
}
tottoripaper