結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | umezo |
提出日時 | 2020-07-31 21:55:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 200,032 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 17:52:20 |
合計ジャッジ時間 | 19,639 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 1,193 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 924 ms
5,376 KB |
testcase_04 | AC | 705 ms
5,376 KB |
testcase_05 | AC | 1,138 ms
5,376 KB |
testcase_06 | AC | 1,073 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int isPrime(int x){ if(x<2) return 0; else if(x==2) return 1; if(x%2==0) return 0; for(int i=3;i*i<=x;i+=2){ if(x%i==0) return 0; } return 1; } int main(){ int t; cin>>t; while(t--){ ll a,p; cin>>a>>p; if(!isPrime(p)){ cout<<-1<<endl; continue; } if(a%p==0) cout<<0<<endl; else cout<<1<<endl; } return 0; }