結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | fine |
提出日時 | 2020-07-31 21:36:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 707 bytes |
コンパイル時間 | 1,734 ms |
コンパイル使用メモリ | 168,516 KB |
実行使用メモリ | 22,932 KB |
最終ジャッジ日時 | 2024-07-06 16:54:22 |
合計ジャッジ時間 | 5,860 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 220 ms
22,764 KB |
testcase_01 | AC | 218 ms
22,760 KB |
testcase_02 | WA | - |
testcase_03 | AC | 192 ms
22,752 KB |
testcase_04 | AC | 167 ms
22,848 KB |
testcase_05 | AC | 223 ms
22,604 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 64 ms
22,744 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 62 ms
22,788 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; constexpr char newl = '\n'; template<typename T> vector<int> sieve(T n) { vector<int> is_prime(n + 1, true); is_prime[0] = false; is_prime[1] = false; for (T i = 2; i <= n; i++) { if (!is_prime[i]) continue; // res.emplace_back(i); for (T j = 2 * i; j <= n; j += i) is_prime[j] = false; } return is_prime; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); auto isp = sieve(5000000); int t; cin >> t; for (int i = 0; i < t; i++) { ll a; int p; cin >> a >> p; cout << (isp[p] ? 1 : -1) << newl; } return 0; }