結果

問題 No.1140 EXPotentiaLLL!
ユーザー green+green+
提出日時 2020-08-01 00:28:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,239 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 83,364 KB
実行使用メモリ 22,856 KB
最終ジャッジ日時 2024-07-06 22:49:53
合計ジャッジ時間 12,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,238 ms
22,712 KB
testcase_01 AC 1,230 ms
22,736 KB
testcase_02 AC 1,239 ms
22,784 KB
testcase_03 AC 927 ms
22,784 KB
testcase_04 AC 712 ms
22,856 KB
testcase_05 AC 1,100 ms
22,716 KB
testcase_06 AC 1,056 ms
22,704 KB
testcase_07 AC 1,199 ms
22,824 KB
testcase_08 AC 69 ms
22,744 KB
testcase_09 AC 65 ms
22,752 KB
testcase_10 AC 62 ms
22,732 KB
testcase_11 AC 64 ms
22,776 KB
testcase_12 AC 64 ms
22,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
#include <algorithm>
#include <queue>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()

int main() {
    long long t,k,a,p,n=5000010;
    vector<int>r(n,1);r[0]=0;r[1]=0;
    rep(i,n){
        if(r[i]==1){
            k=i*2;
            while(k<n){
                r[k]=0;
                k+=i;
            }
        }
    }
    cin>>t;
    rep(i,t){
        cin>>a>>p;
        if(r[p]){
            if(a%p)cout<<1;
            else cout<<0;
        }
        else cout<<-1;
        cout<<endl;
    }
    
	return 0;
}
0