結果
問題 | No.797 Noelちゃんとピラミッド |
ユーザー | jupiro |
提出日時 | 2020-02-02 03:09:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 377 ms / 2,000 ms |
コード長 | 2,525 bytes |
コンパイル時間 | 1,028 ms |
コンパイル使用メモリ | 115,328 KB |
実行使用メモリ | 123,776 KB |
最終ジャッジ日時 | 2024-09-18 20:30:49 |
合計ジャッジ時間 | 26,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
123,132 KB |
testcase_01 | AC | 337 ms
123,112 KB |
testcase_02 | AC | 334 ms
123,012 KB |
testcase_03 | AC | 344 ms
123,696 KB |
testcase_04 | AC | 353 ms
123,520 KB |
testcase_05 | AC | 348 ms
123,760 KB |
testcase_06 | AC | 355 ms
123,648 KB |
testcase_07 | AC | 351 ms
123,688 KB |
testcase_08 | AC | 359 ms
123,536 KB |
testcase_09 | AC | 353 ms
123,648 KB |
testcase_10 | AC | 374 ms
123,648 KB |
testcase_11 | AC | 369 ms
123,648 KB |
testcase_12 | AC | 357 ms
123,488 KB |
testcase_13 | AC | 362 ms
123,520 KB |
testcase_14 | AC | 355 ms
123,556 KB |
testcase_15 | AC | 360 ms
123,644 KB |
testcase_16 | AC | 355 ms
123,756 KB |
testcase_17 | AC | 355 ms
123,776 KB |
testcase_18 | AC | 360 ms
123,572 KB |
testcase_19 | AC | 362 ms
123,664 KB |
testcase_20 | AC | 370 ms
123,648 KB |
testcase_21 | AC | 372 ms
123,612 KB |
testcase_22 | AC | 366 ms
123,648 KB |
testcase_23 | AC | 367 ms
123,476 KB |
testcase_24 | AC | 349 ms
123,056 KB |
testcase_25 | AC | 368 ms
123,216 KB |
testcase_26 | AC | 370 ms
123,196 KB |
testcase_27 | AC | 377 ms
123,776 KB |
testcase_28 | AC | 370 ms
123,572 KB |
testcase_29 | AC | 357 ms
123,208 KB |
testcase_30 | AC | 360 ms
123,264 KB |
testcase_31 | AC | 365 ms
123,392 KB |
testcase_32 | AC | 362 ms
123,068 KB |
testcase_33 | AC | 356 ms
123,288 KB |
testcase_34 | AC | 367 ms
123,252 KB |
testcase_35 | AC | 355 ms
123,672 KB |
testcase_36 | AC | 346 ms
123,104 KB |
testcase_37 | AC | 355 ms
123,504 KB |
testcase_38 | AC | 352 ms
123,592 KB |
testcase_39 | AC | 344 ms
123,340 KB |
testcase_40 | AC | 346 ms
123,248 KB |
testcase_41 | AC | 349 ms
123,256 KB |
testcase_42 | AC | 347 ms
123,180 KB |
testcase_43 | AC | 334 ms
122,984 KB |
testcase_44 | AC | 347 ms
122,928 KB |
testcase_45 | AC | 354 ms
123,140 KB |
testcase_46 | AC | 341 ms
123,072 KB |
testcase_47 | AC | 354 ms
122,972 KB |
testcase_48 | AC | 353 ms
123,136 KB |
testcase_49 | AC | 339 ms
123,156 KB |
testcase_50 | AC | 348 ms
123,008 KB |
testcase_51 | AC | 340 ms
123,132 KB |
testcase_52 | AC | 341 ms
122,924 KB |
testcase_53 | AC | 347 ms
122,940 KB |
testcase_54 | AC | 355 ms
123,136 KB |
testcase_55 | AC | 356 ms
123,012 KB |
testcase_56 | AC | 363 ms
122,860 KB |
testcase_57 | AC | 344 ms
123,136 KB |
testcase_58 | AC | 343 ms
122,964 KB |
testcase_59 | AC | 345 ms
123,032 KB |
testcase_60 | AC | 332 ms
122,880 KB |
testcase_61 | AC | 340 ms
123,136 KB |
testcase_62 | AC | 340 ms
123,192 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; struct mint { ll x; // typedef long long ll; mint(ll x = 0) :x((x% mod + mod) % mod) {} mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod - a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint res(*this); return res += a; } mint operator-(const mint a) const { mint res(*this); return res -= a; } mint operator*(const mint a) const { mint res(*this); return res *= a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod - 2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res /= a; } }; long long fac[MAX], finv[MAX], inv[MAX]; void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++) { fac[i] = fac[i - 1] * i % mod; inv[i] = mod - inv[mod % i] * (mod / i) % mod; finv[i] = finv[i - 1] * inv[i] % mod; } } mint COM(int n, int k) { if (n < k) return 0; if (n < 0 || k < 0) return 0; return mint(fac[n] * (finv[k] * finv[n - k] % mod) % mod); } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ COMinit(); ll N; scanf("%lld", &N); vector<ll> a(N); for (ll i = 0; i < N; i++) scanf("%lld", &a[i]); if (N == 1) { cout << a[0] << endl; return 0; } mint res = 0; for (ll i = 0; i < N; i++) { res += COM(N - 1, i) * a[i]; } cout << res.x << endl; return 0; }