結果
問題 | No.1476 esreveR dna esreveR |
ユーザー | rodea |
提出日時 | 2021-04-18 18:51:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,658 bytes |
コンパイル時間 | 1,170 ms |
コンパイル使用メモリ | 106,512 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 04:47:31 |
合計ジャッジ時間 | 1,662 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 998244353; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; struct mint{ ll x; constexpr mint(long long x = 0) : x((x % MOD + MOD) % MOD) {} constexpr mint operator-() const{ return mint(-x); } constexpr mint& operator+=(const mint& a){ if ((x += a.x) >= MOD) x -= MOD; return *this; } constexpr mint& operator-=(const mint& a){ if ((x += MOD - a.x) >= MOD) x -= MOD; return *this; } constexpr mint& operator*=(const mint& a){ (x *= a.x) %= MOD; return *this; } constexpr mint operator+(const mint& a) const{ mint res(*this); return res += a; } constexpr mint operator-(const mint& a) const{ mint res(*this); return res -= a; } constexpr mint operator*(const mint& a) const{ mint res(*this); return res *= a; } constexpr 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 constexpr mint inv() const{ return pow(MOD - 2); } constexpr mint& operator/=(const mint& a){ return (*this) *= a.inv(); } constexpr mint operator/(const mint& a) const{ mint res(*this); return res /= a; } }; istream& operator>>(istream& is, mint& a) {return is >> a.x;} ostream& operator<<(ostream& os, const mint& a) {return os << a.x;} mint modpow(mint a, ll b){ if(b == 0) return 1; else if(b % 2 == 0){ mint d = modpow(a, b / 2); return d * d; } else{ return a * modpow(a, b - 1); } } int main(){ cin.tie(0); ios::sync_with_stdio(false); ll n; cin>>n; cout << modpow(6, n / 2) << endl; return 0; }