結果

問題 No.1140 EXPotentiaLLL!
ユーザー akaneakane
提出日時 2020-07-31 23:34:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,268 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 203,244 KB
実行使用メモリ 50,360 KB
最終ジャッジ日時 2024-07-06 21:49:24
合計ジャッジ時間 11,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,104 ms
50,232 KB
testcase_01 AC 1,091 ms
50,088 KB
testcase_02 AC 1,078 ms
50,112 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 18 ms
50,128 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 15 ms
50,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
        }
    }
    // mod = 70;
    // cerr << pow_kai(3,4) << endl;

    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 x = A % P;
        if(x>=1){
          cout<< 1 << endl;
        }else{
          cout << 0 << endl;
        }
        

        

    }
}
0