結果
問題 | No.1232 2^x = x |
ユーザー | wdpuyo |
提出日時 | 2020-09-23 13:58:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 2,391 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 170,156 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-27 22:39:37 |
合計ジャッジ時間 | 2,310 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define INF 1000000007 #define rep(i, N) for(ll i = 0; i < N; i++) #define rep2(i, j, k) for(ll i = j; i < k; i++) #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define print(x) cout << x << "\n" #define print2(x, y) cout << x << " " << y << "\n" #define printv(vec) rep(lp, vec.size()) cout << vec[lp] << " "; print(""); #define show(x) cerr << #x << " = " << x << "\n"; #define ALL(v) v.begin(), v.end() #define SUM(v) accumulate(ALL(v), 0) #define MAX(v) *max_element(ALL(v)) #define MIN(v) *min_element(ALL(v)) #define SORT(v) sort(ALL(v)) #define REV(v) reverse(ALL(v)) #define pb(x) emplace_back(x) #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") typedef long long ll; using namespace std; using vl = vector<ll>; using vvl = vector<vector<ll>>; using vs = vector<string>; const int mod = 998244353; class mint { public: ll x; mint(ll x = 0) : x((x % mod + mod) % mod) {} mint operator-() const { return mint(-x); } 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; } 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; } friend ostream& operator<<(ostream& os, const mint& m){ os << m.x; return os; } }; ll modpow(ll x, ll n, ll p = INF) { if (n == 0) return 1 % p; if (n % 2 == 0) return modpow(x * x % p, n / 2, p); else return x * modpow(x, n - 1, p) % p; } void Main(){ ll N; cin >> N; rep(i, N){ ll p; cin >> p; if(p == 2){ print(2); continue; } ll ans = (p - 1) * modpow(p - 1, p - 2, p); print(ans); } } int main(){ ios_base::sync_with_stdio(false); cin.tie(0); ll t = 1; //cin >> t; rep(i, t) Main(); return 0; }