結果
問題 | No.2275 →↑↓ |
ユーザー | Ricky_pon |
提出日時 | 2023-04-21 22:33:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 3,427 bytes |
コンパイル時間 | 1,398 ms |
コンパイル使用メモリ | 134,016 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 16:03:19 |
合計ジャッジ時間 | 2,515 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 25 ms
6,816 KB |
testcase_07 | AC | 19 ms
6,820 KB |
testcase_08 | AC | 29 ms
6,820 KB |
testcase_09 | AC | 30 ms
6,816 KB |
testcase_10 | AC | 29 ms
6,816 KB |
testcase_11 | AC | 30 ms
6,820 KB |
testcase_12 | AC | 29 ms
6,820 KB |
testcase_13 | AC | 29 ms
6,816 KB |
testcase_14 | AC | 30 ms
6,820 KB |
ソースコード
// #include <bits/stdc++.h> #include <string.h> #include <algorithm> #include <array> #include <bitset> #include <cassert> #include <chrono> #include <ciso646> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <optional> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> #define For(i, a, b) for (int i = (int)(a); (i) < (int)(b); ++(i)) #define rFor(i, a, b) for (int i = (int)(a)-1; (i) >= (int)(b); --(i)) #define rep(i, n) For(i, 0, n) #define rrep(i, n) rFor(i, n, 0) #define fi first #define se second #include <atcoder/modint> #include <atcoder/modint> #include <vector> namespace rklib { template <class T> struct Factorial { public: Factorial() : Factorial(0) {} Factorial(int n) { fc.resize(n + 1); inv_fc.resize(n + 1); fc[0] = 1; for (int i = 0; i < n; ++i) fc[i + 1] = fc[i] * (i + 1); inv_fc[n] = 1 / fc[n]; for (int i = n - 1; i >= 0; --i) inv_fc[i] = inv_fc[i + 1] * (i + 1); } T fact(int n) { if (n >= (int)fc.size()) extend(n); return fc[n]; } T inv_fact(int n) { if (n >= (int)fc.size()) extend(n); return inv_fc[n]; } T inv(int n) { assert(n > 0); if (n >= (int)fc.size()) extend(n); return inv_fc[n] * fc[n - 1]; } T comb(int n, int r) { if (n < r || r < 0) return 0; if (n >= (int)fc.size()) extend(n); return fc[n] * inv_fc[r] * inv_fc[n - r]; } T perm(int n, int r) { if (n < r || r < 0) return 0; if (n >= (int)fc.size()) extend(n); return fc[n] * inv_fc[n - r]; } private: std::vector<T> fc; std::vector<T> inv_fc; void extend(int n) { int l = fc.size(); int r = l; while (r <= n) r *= 2; fc.resize(r); inv_fc.resize(r); for (int i = l; i < r; ++i) fc[i] = fc[i - 1] * i; inv_fc[r - 1] = 1 / fc[r - 1]; for (int i = r - 2; i >= l; --i) inv_fc[i] = inv_fc[i + 1] * (i + 1); } }; } // namespace rklib #include <algorithm> #include <cassert> #include <vector> namespace rklib { template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } template <class T> bool chmin_non_negative(T &a, const T &b) { if (a < 0 || a > b) { a = b; return true; } return false; } template <class T> T div_floor(T a, T b) { if (b < 0) a *= -1, b *= -1; return a >= 0 ? a / b : (a + 1) / b - 1; } template <class T> T div_ceil(T a, T b) { if (b < 0) a *= -1, b *= -1; return a > 0 ? (a - 1) / b + 1 : a / b; } } // namespace rklib using namespace std; using namespace rklib; using lint = long long; using pii = pair<int, int>; using pll = pair<lint, lint>; using mint = atcoder::modint998244353; int main() { int n; scanf("%d", &n); int a[n + 1]; a[0] = 1; rep(i, n) scanf("%d", &a[i + 1]); mint x = 1; For(i, 1, n + 1) { x *= min(a[i - 1], a[i]); } printf("%u\n", x.val()); }