結果
問題 | No.797 Noelちゃんとピラミッド |
ユーザー | saio4016 |
提出日時 | 2019-03-15 22:41:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 948 bytes |
コンパイル時間 | 1,459 ms |
コンパイル使用メモリ | 168,016 KB |
実行使用メモリ | 813,812 KB |
最終ジャッジ日時 | 2024-07-01 21:17:01 |
合計ジャッジ時間 | 8,377 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | MLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
ソースコード
#include <bits/stdc++.h> #define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define endl "\n" #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define rrep(i, n) for(int i = ((int)(n)-1); i >= 0; i--) #define all(x) (x).begin(),(x).end() using namespace std; using ll = long long; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int,int> P; const int INF = 1e9; //const ll INF = 1e18; const double EPS = 1e-10; const int MOD = 1e9+7; const double PI = acos(-1.0); int main() { int n; cin >> n; ll comb[n+10][n+10] = {}; for(int i = 0; i < n; i++) cin >> comb[1][i]; for(int i = 2; i <= n; i++){ for(int j = 0; j <= n-i; j++){ comb[i][j] = comb[i-1][j] + comb[i-1][j+1]; comb[i][j] %= MOD; //cout << comb[i][j] << ' '; } //cout << endl; } ll ans = 0; for(int i = 0; i < n; i++){ ans += comb[n][i]; ans %= MOD; } cout << ans << endl; return 0; }