結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | hanbei_dayo |
提出日時 | 2020-07-31 22:03:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,052 bytes |
コンパイル時間 | 819 ms |
コンパイル使用メモリ | 98,560 KB |
実行使用メモリ | 8,540 KB |
最終ジャッジ日時 | 2024-07-06 18:10:07 |
合計ジャッジ時間 | 31,523 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 1,459 ms
8,392 KB |
testcase_09 | AC | 1,428 ms
8,408 KB |
testcase_10 | AC | 1,450 ms
8,288 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<string> #include<utility> #include<map> #include<set> #include<queue> #include<stack> #include<functional> #include<math.h> #include<random> #include <bitset> using namespace std; #define N (1000000000+7) //#define N 998244353 #define INF 1e16 typedef long long ll; typedef pair<int,int> P; typedef pair<int,P> Q; const int inf = (int)1e9; ll gcd(ll a, ll b) { if (b > a) { ll tmp = b; b = a; a = tmp; } if (a%b == 0)return b; else return gcd(b, a%b); } bool prime[5000010]; void furui() { int i = 2; while (i <= 5000000) { int j = 2; while (j*j <= i && !prime[i]) { if (i%j == 0) { prime[i] = true; break; } else j++; } int z = 2; while (!prime[i]) { if (i*z <= 5000000) { prime[i*z] = true; z++; } else break; } i++; } } int main(void){ ll T; cin>>T; furui(); for(int i=0;i<T;i++){ ll a,p; cin>>a>>p; if(prime[p])cout<<-1<<endl; else{ if(a%p==0)cout<<0<<endl; else cout<<1<<endl; } } return 0; }