結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | KY2001 |
提出日時 | 2020-11-07 07:44:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,957 bytes |
コンパイル時間 | 1,151 ms |
コンパイル使用メモリ | 115,560 KB |
実行使用メモリ | 10,024 KB |
最終ジャッジ日時 | 2024-11-18 18:35:26 |
合計ジャッジ時間 | 67,592 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | AC | 2 ms
8,448 KB |
testcase_02 | AC | 2 ms
8,448 KB |
testcase_03 | AC | 9 ms
8,448 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
ソースコード
#include <algorithm> #include <bitset> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <fstream> #include <iomanip> #include <iostream> #include <map> #include <mutex> #include <queue> #include <set> #include <stack> #include <string> #include <thread> #include <vector> #define int long long #define rep(i, n) for (int i = 0; i < (int)(n); i++) // [0, b) #define rep2(i, a, b) for (int i = (int)(a); i < (int)(b); i++) // [a, b) #define rep3(i, a, b) for (int i = (int)(a); i >= (int)(b); i--) // reversed [b, a] so [a, a-1, a-2, ..., b] #define FOR(i, a) for (auto &i: a) #define ALL(obj) begin(obj), end(obj) #define MAX(x) *max_element(ALL(x)) #define MIN(x) *min_element(ALL(x)) #define SUM(x) accumulate(ALL(x), 0LL) #define LOWER_BOUND(A, key) distance(A.begin(), lower_bound(ALL(A), key)) #define UPPER_BOUND(A, key) distance(A.begin(), upper_bound(ALL(A), key)) using namespace std; const int MOD = 998244353; const int MOD2 = 1000000007; const int INF = (int)(1e13 + 7); const double EPS = 1e-14; const double PI = acos(-1); int CEIL(int a, int b) { return (a >= 0 ? (a + (b - 1)) / b : (a - (b - 1)) / b); } //ceil() for int int mod(int a, int b) { return a >= 0 ? a % b : a - (b * CEIL(a, b)); } //always return positive num int pow_mod(int a, int b) { //return x^y in order(log(y)) int res = 1; for (a %= MOD; b; a = a * a % MOD, b >>= 1) if (b & 1) res = res * a % MOD; return res; } bool is_prime(int n) { if ((n % 2 == 0 && n != 2) || n == 1) return false; for (int k = 3; k < (int)sqrt((double(n))) + 2; k += 2) if (n % k == 0) return false; return true; } signed main() { cin.tie(nullptr); cout.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); int N; cin >> N; rep(i, N) { int a; cin >> a; cout << a << " " << is_prime(a) << endl; } }