結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | udonman |
提出日時 | 2020-08-09 18:20:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,300 ms / 2,000 ms |
コード長 | 1,033 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 73,444 KB |
実行使用メモリ | 23,040 KB |
最終ジャッジ日時 | 2024-10-05 06:31:43 |
合計ジャッジ時間 | 15,037 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,300 ms
22,864 KB |
testcase_01 | AC | 1,281 ms
22,876 KB |
testcase_02 | AC | 1,288 ms
22,912 KB |
testcase_03 | AC | 1,034 ms
22,912 KB |
testcase_04 | AC | 804 ms
22,912 KB |
testcase_05 | AC | 1,209 ms
22,912 KB |
testcase_06 | AC | 1,148 ms
23,040 KB |
testcase_07 | AC | 1,287 ms
22,732 KB |
testcase_08 | AC | 238 ms
22,912 KB |
testcase_09 | AC | 242 ms
22,912 KB |
testcase_10 | AC | 230 ms
23,036 KB |
testcase_11 | AC | 240 ms
22,912 KB |
testcase_12 | AC | 236 ms
22,912 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <cstdint> #include <cstdio> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <unordered_map> #include <unordered_set> #include <bitset> #include <cctype> #include <numeric> #define ll long long int #define pb push_back #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,n) for(int i=1;i<=(n);i++) using namespace std; int mx8[] = {0,0,1,-1,-1,1,-1,1}; int my8[] = {-1,1,0,0,-1,-1,1,1}; int mx4[] = {1,-1,0,0}; int my4[] = {0,0,-1,1}; const int MOD = 1000000007; int y[5000003]; int main() { for(int i = 2; i <= 5000002; i++){ for(int j = 1; j <= 5000002/i; j++){ y[i*j]++; } } int t; cin >> t; rep(test,t){ ll a,p; cin >> a >> p; if(y[p] == 1){ if(a % p == 0) cout << 0 << endl; else cout << 1 << endl; }else{ cout << -1 << endl; } } }