結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | hanbei_dayo |
提出日時 | 2020-07-31 22:09:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 733 ms |
コンパイル使用メモリ | 98,792 KB |
実行使用メモリ | 8,560 KB |
最終ジャッジ日時 | 2024-07-06 18:22:41 |
合計ジャッジ時間 | 24,053 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,574 ms
8,420 KB |
testcase_01 | AC | 1,566 ms
8,504 KB |
testcase_02 | AC | 1,578 ms
8,392 KB |
testcase_03 | AC | 1,521 ms
8,344 KB |
testcase_04 | AC | 1,501 ms
8,300 KB |
testcase_05 | AC | 1,565 ms
8,312 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1,591 ms
8,516 KB |
testcase_08 | AC | 1,425 ms
8,460 KB |
testcase_09 | AC | 1,438 ms
8,548 KB |
testcase_10 | AC | 1,438 ms
8,524 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include<stdio.h> #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){ int T; scanf("%d",&T); furui(); for(int i=0;i<T;i++){ ll a,p; scanf("%ld%ld",&a,&p); if(prime[p])printf("-1\n"); else{ if(a%p==0)printf("0\n"); else printf("1\n"); } } return 0; }