結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | tabr |
提出日時 | 2020-05-06 16:55:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 1,396 ms |
コンパイル使用メモリ | 166,792 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-11-18 17:54:19 |
合計ジャッジ時間 | 67,857 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
8,448 KB |
testcase_01 | AC | 2 ms
8,320 KB |
testcase_02 | AC | 2 ms
8,448 KB |
testcase_03 | AC | 14 ms
8,320 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #ifdef tabr #include "library/debug.cpp" #else #define debug(...) #endif bool is_prime(unsigned long long n) { if (n <= 1) { return false; } for (long long i = 2; i * i <= n; i++) { if (n % i == 0) { return false; } } return true; } int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; for (int i = 0; i < n; i++) { ll x; cin >> x; cout << x << " "; int j = 0; if (is_prime(x)) { j = 1; } cout << j << '\n'; } return 0; }