結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | zeronosu77108 |
提出日時 | 2020-07-31 23:18:49 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,894 bytes |
コンパイル時間 | 826 ms |
コンパイル使用メモリ | 118,400 KB |
実行使用メモリ | 16,840 KB |
最終ジャッジ日時 | 2024-07-06 21:28:21 |
合計ジャッジ時間 | 8,118 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <iostream> using namespace std; using int64 = long long; int MOD = 1000000007; struct mint { int64 x; mint(const int64 x1=0) { x = x1%MOD; }; mint& operator++(int n) { x+=1; return *this; }; mint& operator--(int n) { x-=1; return *this; }; mint& operator=(int64 n) { x=n%MOD; return *this; }; mint& operator--() {x-=1; return *this; }; 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) { return (*this) *= a.inv();} 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 operator/(const mint a) const { mint res(*this); return res/=a; } mint inv() const { return pow(MOD-2);} friend ostream& operator<<(ostream &os, const mint a) noexcept { return os << a.x; } constexpr bool operator == (const mint& r) const noexcept { return this->x == r.x; } constexpr bool operator != (const mint& r) const noexcept { return this->x != r.x; } mint pow(long long t) const { if (!t) return mint(1); mint a = pow(t>>1); a*=a; if(t&1) a*= *this; return a; } }; bool isPrime(int64 p) { if (p%2==0) return false; for (int i=3; i*i<=p; i+=2) { if (p%i==0) return false; } return true; } void solve() { int64 a,p; cin >> a >> p; MOD = p; if (isPrime(p)) { int64 t = (p-3)*(p-2)/2; cout << mint(a).pow(t).inv() + 3 << endl; } else { cout << -1 << endl; } } int main() { int t; cin >> t; for (int i=0; i<t; i++) solve(); }