結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | mmn15277198 |
提出日時 | 2021-06-07 22:01:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 452 bytes |
コンパイル時間 | 1,356 ms |
コンパイル使用メモリ | 168,956 KB |
実行使用メモリ | 11,964 KB |
最終ジャッジ日時 | 2024-11-25 04:02:09 |
合計ジャッジ時間 | 6,196 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 86 ms
11,856 KB |
testcase_09 | AC | 86 ms
11,808 KB |
testcase_10 | AC | 86 ms
11,848 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MX = 2200000; int main() { vector<int> prime(MX , 0); for (int i = 2; i < MX; i++) { for (int j = i; j < MX; j += i) { prime[j]++; } } int t; cin >> t; while (t--) { long long a; int p; cin >> a >> p; if (prime[p] > 1) { cout << -1 << endl; } else { if (a % p == 0) cout << 0 << endl; else cout << 1 << endl; } } return 0; }