結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | 🍮かんプリン |
提出日時 | 2020-07-31 23:07:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,005 bytes |
コンパイル時間 | 1,315 ms |
コンパイル使用メモリ | 167,480 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 20:56:41 |
合計ジャッジ時間 | 11,676 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,063 ms
6,816 KB |
testcase_01 | AC | 1,072 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 753 ms
6,940 KB |
testcase_04 | AC | 601 ms
6,944 KB |
testcase_05 | AC | 931 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 31 ms
6,940 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.07.31 23:07:32 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; struct Eratosthenes { private: int N; public: std::vector< bool > isprime; std::vector< int > prime; Eratosthenes(int n) : N(n) { isprime.resize(N + 1, true); isprime[0] = isprime[1] = false; for (int i = 2; i * i <= N; i++) { if (isprime[i]) { for (int j = i + i; j <= N; j += i) { isprime[j] = false; } } } for (int i = 2; i <= N; i++) { if (isprime[i]) { prime.push_back(i); } } } }; int main() { int t;cin >> t; Eratosthenes era(5 * 1000000); while(t--) { ll a, p; cin >> a >> p; if (era.isprime[p]) { cout << 1 << endl; } else { cout << -1 << endl; } } return 0; }