結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
akane
|
| 提出日時 | 2020-07-31 23:03:57 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,246 bytes |
| コンパイル時間 | 4,413 ms |
| コンパイル使用メモリ | 195,708 KB |
| 最終ジャッジ日時 | 2025-01-12 11:26:21 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 3 TLE * 7 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for (int i=0; i < (n); i++)
using namespace std;
using ll = long long;
ll mod;
ll pow_kai(ll a, ll n){//aのn乗を計算します。
ll x = 1;
while(n > 0){//全てのbitが捨てられるまで。
if(n&1){//1番右のbitが1のとき。
x = (x*a)%mod;
// x %= mod;
}
a = (a*a)%mod;
// a %= mod;
n >>= 1;//bit全体を右に1つシフトして一番右を捨てる。
}
return x;
}
int main(){
int testcase; cin>> testcase;
vector<ll> vp(6000000+1,0);
set<ll> prime;
for(int i=2; i*i<=6000000; i++){
ll x=i+i;
if(vp[x]==1) continue;
while(x<=6000000){
vp[x]=1;
x += i;
}
}
while(testcase--){
ll A,P; cin>>A>>P;
mod = P;
// Aが素数かどうか。
bool pflg = false;
if(vp[P]==0 && P>=2){
pflg=true;
}else{
cout << -1 << endl;
continue;
}
// Pが素数の時
ll rA=A%P;
ll k = (P-1)/2 + 1;
while(k--){
rA = (rA*rA)%mod;
}
cout << rA << endl;
// ll ans = pow_kai(rA,(P-1)/2 + 1)%mod;
// cout << ans << endl;
}
}
akane