結果

問題 No.797 Noelちゃんとピラミッド
ユーザー goodbatongoodbaton
提出日時 2019-03-16 18:54:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 2,709 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 99,800 KB
実行使用メモリ 6,340 KB
最終ジャッジ日時 2023-09-14 15:25:37
合計ジャッジ時間 4,214 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 26 ms
6,204 KB
testcase_04 AC 27 ms
6,232 KB
testcase_05 AC 27 ms
6,232 KB
testcase_06 AC 26 ms
6,236 KB
testcase_07 AC 26 ms
6,160 KB
testcase_08 AC 26 ms
6,312 KB
testcase_09 AC 27 ms
6,232 KB
testcase_10 AC 27 ms
6,204 KB
testcase_11 AC 27 ms
6,180 KB
testcase_12 AC 26 ms
6,236 KB
testcase_13 AC 26 ms
6,328 KB
testcase_14 AC 26 ms
6,232 KB
testcase_15 AC 26 ms
6,340 KB
testcase_16 AC 27 ms
6,236 KB
testcase_17 AC 26 ms
6,220 KB
testcase_18 AC 26 ms
6,184 KB
testcase_19 AC 26 ms
6,236 KB
testcase_20 AC 27 ms
6,236 KB
testcase_21 AC 27 ms
6,192 KB
testcase_22 AC 27 ms
6,204 KB
testcase_23 AC 19 ms
5,164 KB
testcase_24 AC 7 ms
4,380 KB
testcase_25 AC 17 ms
4,888 KB
testcase_26 AC 15 ms
4,912 KB
testcase_27 AC 26 ms
6,216 KB
testcase_28 AC 23 ms
5,628 KB
testcase_29 AC 5 ms
4,380 KB
testcase_30 AC 7 ms
4,376 KB
testcase_31 AC 19 ms
5,156 KB
testcase_32 AC 9 ms
4,376 KB
testcase_33 AC 16 ms
4,904 KB
testcase_34 AC 12 ms
4,376 KB
testcase_35 AC 26 ms
6,336 KB
testcase_36 AC 4 ms
4,376 KB
testcase_37 AC 23 ms
5,688 KB
testcase_38 AC 24 ms
5,916 KB
testcase_39 AC 16 ms
5,012 KB
testcase_40 AC 4 ms
4,376 KB
testcase_41 AC 5 ms
4,380 KB
testcase_42 AC 16 ms
5,196 KB
testcase_43 AC 1 ms
4,376 KB
testcase_44 AC 1 ms
4,376 KB
testcase_45 AC 2 ms
4,380 KB
testcase_46 AC 2 ms
4,376 KB
testcase_47 AC 2 ms
4,376 KB
testcase_48 AC 2 ms
4,376 KB
testcase_49 AC 2 ms
4,380 KB
testcase_50 AC 2 ms
4,380 KB
testcase_51 AC 1 ms
4,376 KB
testcase_52 AC 2 ms
4,380 KB
testcase_53 AC 2 ms
4,376 KB
testcase_54 AC 2 ms
4,380 KB
testcase_55 AC 1 ms
4,376 KB
testcase_56 AC 2 ms
4,376 KB
testcase_57 AC 2 ms
4,380 KB
testcase_58 AC 1 ms
4,376 KB
testcase_59 AC 2 ms
4,380 KB
testcase_60 AC 1 ms
4,376 KB
testcase_61 AC 2 ms
4,376 KB
testcase_62 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>

#include <iostream>
#include <complex>
#include <string>
#include <algorithm>
#include <numeric>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>

#include <functional>
#include <cassert>

typedef long long ll;
using namespace std;

#ifndef LOCAL
#define debug(x) ;
#else
#define debug(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl;

template <typename T1, typename T2>
ostream &operator<<(ostream &out, const pair<T1, T2> &p) {
  out << "{" << p.first << ", " << p.second << "}";
  return out;
}

template <typename T>
ostream &operator<<(ostream &out, const vector<T> &v) {
  out << '{';
  for (const T &item : v) out << item << ", ";
  out << "\b\b}";
  return out;
}
#endif

#define mod 1000000007 //1e9+7(prime number)
#define INF 1000000000 //1e9
#define LLINF 2000000000000000000LL //2e18
#define SIZE 200010

vector<ll> factmemo, factmemoInv;
ll factmemoMod = -1;

ll factorial(int n, int M){
  if(factmemoMod == M) return factmemo[n];
  if(n <= 1) return 1;

  ll res = 1;
  for(int i=1; i<=n; i++) res = res * i % M;
  return res;
}

ll power(int k, int n, int M){
  if(n == 0) return 1;
  if(n == 1) return (ll)k;

  ll res = power(k, n/2, M);

  res = res * res % M;
  return n%2 == 1 ? res * k % M : res;
}

void initFactorial(int n, int M){
  factmemo.assign(n+1, 0);
  factmemoInv.assign(n+1, 0);
  factmemoMod = M;
  factmemo[0] = 1;
  for(int i=1;i<=n;i++) factmemo[i] = factmemo[i-1] * i % M;
  factmemoInv[n] = power(factmemo[n], M-2, M);
  for(int i=n;i>0;i--) factmemoInv[i-1] = factmemoInv[i] * i % M;
}

//nCm nPm nHm (mod M)

/*Combination*/
ll C(int n, int m, int M){
  if(n < m) return 0;
  if(m == 0 || n == m) return 1;

  if(factmemoMod == M)
    return factmemo[n] * factmemoInv[m] % M * factmemoInv[n-m] % M;

  ll numer = factorial(n, M);
  ll denom = factorial(m, M) * factorial(n-m, M) % M;

  denom = power((int)denom, M-2, M);

  return numer * denom % M;
}
/*Permutation*/
ll P(int n, int m, int M){
  if(n < m) return 0;
  if(m == 0) return 1;

  if(factmemoMod == M)
    return factmemo[n] * factmemoInv[n-m] % M;

  ll numer = factorial(n, M);
  ll denom = factorial(n-m, M);

  denom = power((int)denom, M-2, M);

  return numer * denom % M;
}
/*Combination with Repetitions*/
ll H(int n, int m, int M){
  if(n == 0 && m == 0) return 1;
  return C(n+m-1, m, M);
}



int main(){
  int n;

  scanf("%d", &n);

  initFactorial(n*2, mod);

  ll ans = 0;

  for(int i=0;i<n;i++){
    int a;
    scanf("%d", &a);
    ans += (ll)a * C(n-1, i, mod) % mod;
  }

  cout << ans % mod << endl;

  return 0;
}
0