結果

問題 No.797 Noelちゃんとピラミッド
ユーザー oxyshoweroxyshower
提出日時 2020-01-14 18:54:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,004 bytes
コンパイル時間 1,858 ms
コンパイル使用メモリ 170,244 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 18:29:11
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 103 ms
5,376 KB
testcase_04 AC 104 ms
5,376 KB
testcase_05 AC 103 ms
5,376 KB
testcase_06 AC 103 ms
5,376 KB
testcase_07 AC 103 ms
5,376 KB
testcase_08 AC 104 ms
5,376 KB
testcase_09 AC 102 ms
5,376 KB
testcase_10 AC 103 ms
5,376 KB
testcase_11 AC 103 ms
5,376 KB
testcase_12 AC 102 ms
5,376 KB
testcase_13 AC 101 ms
5,376 KB
testcase_14 AC 102 ms
5,376 KB
testcase_15 AC 102 ms
5,376 KB
testcase_16 AC 102 ms
5,376 KB
testcase_17 AC 103 ms
5,376 KB
testcase_18 AC 102 ms
5,376 KB
testcase_19 AC 103 ms
5,376 KB
testcase_20 AC 101 ms
5,376 KB
testcase_21 AC 102 ms
5,376 KB
testcase_22 AC 103 ms
5,376 KB
testcase_23 AC 74 ms
5,376 KB
testcase_24 AC 26 ms
5,376 KB
testcase_25 AC 63 ms
5,376 KB
testcase_26 AC 59 ms
5,376 KB
testcase_27 AC 100 ms
5,376 KB
testcase_28 AC 91 ms
5,376 KB
testcase_29 AC 17 ms
5,376 KB
testcase_30 AC 25 ms
5,376 KB
testcase_31 AC 75 ms
5,376 KB
testcase_32 AC 34 ms
5,376 KB
testcase_33 AC 62 ms
5,376 KB
testcase_34 AC 44 ms
5,376 KB
testcase_35 AC 101 ms
5,376 KB
testcase_36 AC 15 ms
5,376 KB
testcase_37 AC 91 ms
5,376 KB
testcase_38 AC 95 ms
5,376 KB
testcase_39 AC 60 ms
5,376 KB
testcase_40 AC 14 ms
5,376 KB
testcase_41 AC 20 ms
5,376 KB
testcase_42 AC 59 ms
5,376 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 5 ms
5,376 KB
testcase_45 AC 4 ms
5,376 KB
testcase_46 AC 4 ms
5,376 KB
testcase_47 AC 4 ms
5,376 KB
testcase_48 AC 5 ms
5,376 KB
testcase_49 AC 4 ms
5,376 KB
testcase_50 AC 4 ms
5,376 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 4 ms
5,376 KB
testcase_53 AC 5 ms
5,376 KB
testcase_54 AC 5 ms
5,376 KB
testcase_55 AC 4 ms
5,376 KB
testcase_56 AC 5 ms
5,376 KB
testcase_57 AC 4 ms
5,376 KB
testcase_58 AC 4 ms
5,376 KB
testcase_59 AC 4 ms
5,376 KB
testcase_60 AC 5 ms
5,376 KB
testcase_61 AC 4 ms
5,376 KB
testcase_62 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif
#define int long long
const int MOD = 1e9 + 7;
struct Combination{
  const int MOD = 1e9+7;

  vector<int> fact; // fact[i] = iの階乗
  void init(int n){
    fact.resize(n+1);
    fact[0] = fact[1] = 1;
    for(int i = 2; i <= n; i++){
      fact[i] = i * fact[i-1] % MOD;
    }
  }

  int nCr(int n,int r){ // nCr = n!/r!(n-r)!
    return fact[n] * mod_pow(fact[r]*fact[n-r]%MOD,MOD-2,MOD) % MOD;
  }

  int mod_pow(int n,int p,int MOD){ // a/n ≡ a*n^(p-2) nとpは互いに素
    int r = 1;
    for(; p > 0; p >>= 1){
      if(p & 1LL) r = (r * n) % MOD;
      n = (n * n) % MOD;
    }
    return r; // r = n^p % MOD
  }

}comb;

signed main(){

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

  int ans = 0;
  comb.init(100001);
  for(int i = 0; i < n; i++){
    ans = (ans + a[i] * comb.nCr(n-1, i)) % MOD;
  }
  cout << ans << endl;

  return 0;
}
0