結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ceni1055ceni1055
提出日時 2019-03-15 21:59:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 1,590 ms
コンパイル使用メモリ 170,644 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-01 20:57:29
合計ジャッジ時間 24,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
7,936 KB
testcase_01 AC 56 ms
7,936 KB
testcase_02 AC 57 ms
7,936 KB
testcase_03 AC 627 ms
8,192 KB
testcase_04 AC 614 ms
8,320 KB
testcase_05 AC 636 ms
8,448 KB
testcase_06 AC 634 ms
8,320 KB
testcase_07 AC 613 ms
8,320 KB
testcase_08 AC 624 ms
8,192 KB
testcase_09 AC 647 ms
8,320 KB
testcase_10 AC 617 ms
8,320 KB
testcase_11 AC 613 ms
8,320 KB
testcase_12 AC 618 ms
8,320 KB
testcase_13 AC 625 ms
8,448 KB
testcase_14 AC 629 ms
8,320 KB
testcase_15 AC 624 ms
8,320 KB
testcase_16 AC 620 ms
8,320 KB
testcase_17 AC 624 ms
8,192 KB
testcase_18 AC 622 ms
8,192 KB
testcase_19 AC 622 ms
8,320 KB
testcase_20 AC 624 ms
8,320 KB
testcase_21 AC 624 ms
8,320 KB
testcase_22 AC 664 ms
8,320 KB
testcase_23 AC 461 ms
8,192 KB
testcase_24 AC 180 ms
7,808 KB
testcase_25 AC 394 ms
8,192 KB
testcase_26 AC 371 ms
8,064 KB
testcase_27 AC 612 ms
8,320 KB
testcase_28 AC 549 ms
8,192 KB
testcase_29 AC 128 ms
7,808 KB
testcase_30 AC 172 ms
7,936 KB
testcase_31 AC 458 ms
8,192 KB
testcase_32 AC 224 ms
8,064 KB
testcase_33 AC 385 ms
8,192 KB
testcase_34 AC 290 ms
8,064 KB
testcase_35 AC 626 ms
8,192 KB
testcase_36 AC 115 ms
7,936 KB
testcase_37 AC 552 ms
8,192 KB
testcase_38 AC 576 ms
8,320 KB
testcase_39 AC 382 ms
8,192 KB
testcase_40 AC 114 ms
7,936 KB
testcase_41 AC 145 ms
7,936 KB
testcase_42 AC 369 ms
8,064 KB
testcase_43 AC 57 ms
7,936 KB
testcase_44 AC 57 ms
7,936 KB
testcase_45 AC 57 ms
7,936 KB
testcase_46 AC 57 ms
7,936 KB
testcase_47 AC 56 ms
7,936 KB
testcase_48 AC 56 ms
7,808 KB
testcase_49 AC 57 ms
8,064 KB
testcase_50 AC 56 ms
7,936 KB
testcase_51 AC 57 ms
7,936 KB
testcase_52 AC 56 ms
7,808 KB
testcase_53 AC 57 ms
7,936 KB
testcase_54 AC 56 ms
7,936 KB
testcase_55 AC 57 ms
7,936 KB
testcase_56 AC 57 ms
7,936 KB
testcase_57 AC 56 ms
7,936 KB
testcase_58 AC 56 ms
7,936 KB
testcase_59 AC 57 ms
7,936 KB
testcase_60 AC 56 ms
7,936 KB
testcase_61 AC 56 ms
7,936 KB
testcase_62 AC 57 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <assert.h>

using namespace std;

const int MOD = 1e9 + 7;

vector<long long> fac(300001), ifac(300001);

long long mpow(long long x, long long n)
{
  long long ans = 1;
  while (n != 0)
  {
    if (n & 1)
      ans = ans * x % MOD;
    x = x * x % MOD;
    n = n >> 1;
  }
  return ans;
}

long long comb(long long a, long long b)
{
  if (a == 0 && b == 0)
    return 1;
  if (a < b || a < 0)
    return 0;
  long long tmp = ifac[a - b] * ifac[b] % MOD;
  return tmp * fac[a] % MOD;
}

int main()
{
  int N;
  cin >> N;
  vector<int> a(N);
  for (int i = 0; i < N; i++)
    cin >> a[i];
  fac[0] = 1;
  ifac[0] = 1;
  for (long long i = 0; i < 300000; i++)
  {
    fac[i + 1] = fac[i] * (i + 1) % MOD;
    ifac[i + 1] = ifac[i] * mpow(i + 1, MOD - 2) % MOD;
  }
  long long ans = 0;
  for (int i = 0; i < N; i++)
  {
    ans = (ans + comb(N - 1, i) * a[i]) % MOD;
    cerr << i << " " << comb(N - 1, i) << endl;
  }
  cout << ans << endl;

  return 0;
}
0