結果

問題 No.1140 EXPotentiaLLL!
ユーザー ytftytft
提出日時 2021-05-07 18:57:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,349 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 3,063 ms
コンパイル使用メモリ 336,708 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-09-15 07:11:10
合計ジャッジ時間 16,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <boost/multiprecision/cpp_int.hpp>
namespace mp=boost::multiprecision;

int main(){
    int N;
    cin>>N;
    long long A,P;
    vector<int> M(5000001,1);
    M[1]=0;
    for(int i=2;i<5000001;i++){
        if(M[i]){
            for(int j=i*2;j<5000001;j+=i){
                M[j]=0;
            }
        }
    }
    for(int i=0;i<N;i++){
        cin>>A>>P;
        cout<<(M[P]*(1+(A%P!=0))-1)<<endl;
    }
    
}
0