結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-30 06:42:25 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 864 bytes |
| コンパイル時間 | 1,736 ms |
| コンパイル使用メモリ | 193,416 KB |
| 最終ジャッジ日時 | 2025-01-18 09:50:39 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 8 TLE * 3 |
ソースコード
typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
template< typename T >
T mod_pow(T x, T n, const T &p) {
T ret = 1;
while(n > 0) {
if(n & 1) (ret *= x) %= p;
(x *= x) %= p;
n >>= 1;
}
return ret;
}
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
ll t;
std::cin >> t;
for (int di = 0; di < t; di++) {
ll a,p;
std::cin >> a>>p;
bool prime = false;
for (int i = 2; i <= sqrt(p); i++) {
if(p%i==0){
prime = true;
break;
}
}
if(prime){
if(a%p==0){
std::cout << 0 << '\n';
continue;
}
std::cout << mod_pow(a, p*(p+1)/2, p) << '\n';
}else{
std::cout << -1 << '\n';
}
}
}