結果

問題 No.1140 EXPotentiaLLL!
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-29 03:58:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 2,113 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 132,624 KB
実行使用メモリ 63,916 KB
最終ジャッジ日時 2024-09-25 16:37:47
合計ジャッジ時間 10,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 604 ms
63,784 KB
testcase_01 AC 606 ms
63,788 KB
testcase_02 AC 599 ms
63,892 KB
testcase_03 AC 581 ms
63,916 KB
testcase_04 AC 531 ms
63,916 KB
testcase_05 AC 579 ms
63,912 KB
testcase_06 AC 577 ms
63,912 KB
testcase_07 AC 634 ms
63,788 KB
testcase_08 AC 406 ms
63,788 KB
testcase_09 AC 414 ms
63,912 KB
testcase_10 AC 423 ms
63,680 KB
testcase_11 AC 408 ms
63,916 KB
testcase_12 AC 431 ms
63,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
#include<functional>
#include<utility>
using namespace std;
struct Eratosthenes {
    vector<int> isp,minfactor,myprime,moebius;

    Eratosthenes (int n) : isp(n+1,1),minfactor(n+1,__INT_MAX__),moebius(n+1,1){

        isp[0] = isp[1] = 0;
        minfactor[0] = 0;minfactor[1] = 1;

        for(int p = 2;p <= n;p++){
            if(!isp[p]) continue;
            minfactor[p] = p;
            moebius[p] = -1;
            myprime.push_back(p);

            for(int q = 2*p;q <= n;q += p){
                isp[q] = false;

                if(!((q/p)%p)) moebius[q] = 0;
                else moebius[q] = -moebius[q];


                minfactor[q] = min(minfactor[q],p);
            }
        }
    }

    vector<pair<int,int>> prime_factorize(int n) {
        vector<pair<int,int>> res;
        while(n-1){

            int p = minfactor[n];
            int exp = 0;

            while(minfactor[n] == p){
                n /= p;
                exp ++;
            }

            res.push_back(make_pair(p,exp));
        }

        return res;
    }

    vector<int> divisors(int n){
        vector<int> res;
        res.push_back(1);

        auto pf = prime_factorize(n);

        for(auto [p,e]:pf){
            int s = (int)res.size();

            for(int i = 0;i < s;i++){
                int v = 1;
                for(int j = 0;j < e;j++){
                    v *= p;
                    res.push_back(res[i]*v);
                }
            }
        }

        return res;
    }
};
Eratosthenes er((int)5e6);
long long A,P;
void solve()
{
	cin >> A >> P;
	bool prime = er.isp[P];
	if(prime)
	{
		if(A%P == 0) cout << 0 << "\n";
		else cout << 1 << "\n";
	}
	else cout << -1 << "\n";
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	cin >> tt;
	while(tt--) solve();
}
0