結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | rokahikou1 |
提出日時 | 2020-08-01 02:38:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,295 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 96,936 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 01:44:22 |
合計ジャッジ時間 | 12,513 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,137 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1,123 ms
6,944 KB |
testcase_03 | AC | 780 ms
6,940 KB |
testcase_04 | AC | 597 ms
6,944 KB |
testcase_05 | AC | 933 ms
6,940 KB |
testcase_06 | AC | 890 ms
6,940 KB |
testcase_07 | AC | 1,058 ms
6,944 KB |
testcase_08 | AC | 24 ms
6,940 KB |
testcase_09 | AC | 24 ms
6,944 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 24 ms
6,944 KB |
testcase_12 | AC | 24 ms
6,944 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstdint> #include <cstdio> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <vector> using namespace std; #define rep(i, n) for(int(i) = 0; (i) < (n); (i)++) #define FOR(i, m, n) for(int(i) = (m); (i) < (n); (i)++) #define All(v) (v).begin(), (v).end() #define pb push_back #define MP(a, b) make_pair((a), (b)) using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; const int INF = 1 << 30; const ll LINF = 1LL << 60; const int MOD = 1e9 + 7; vector<bool> sieve(int x) { // range...[0,x] vector<bool> flags(x + 1, true); flags[0] = false, flags[1] = false; for(int i = 2; i * i <= x; i++) { if(!flags[i]) continue; for(int mult = i * i; mult < x; mult += i) flags[mult] = false; } return flags; } int main() { int T; cin >> T; auto primes = sieve(5000000); while(T--) { ll A, P; cin >> A >> P; if(primes[P]) { A = A % P; if(A == 0) { cout << 0 << endl; } else { cout << 1 << endl; } } else { cout << -1 << endl; } } return 0; }