結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | ttkkggww |
提出日時 | 2020-07-31 21:55:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 467 bytes |
コンパイル時間 | 1,842 ms |
コンパイル使用メモリ | 168,480 KB |
実行使用メモリ | 22,884 KB |
最終ジャッジ日時 | 2024-07-06 17:53:11 |
合計ジャッジ時間 | 10,661 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 740 ms
22,788 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 83 ms
22,748 KB |
testcase_09 | AC | 85 ms
22,708 KB |
testcase_10 | AC | 88 ms
22,780 KB |
testcase_11 | AC | 88 ms
22,748 KB |
testcase_12 | AC | 89 ms
22,764 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main() { int t; cin >> t; vector<int> prime(5*1000000+1,1); for(int i = 2;i<5*1000000+1;i++) { if(prime[i]) { for(int j = i*2;j<5*1000000+1;j+=i) { prime[j] = false; } } } prime[0] = prime[1] = false; while(t--) { int a,p; cin >> a >> p; if(prime[p]) { if(a%p==0) { cout<<0<<endl; } else cout << 1 << endl; } else cout << -1 << endl; } }