結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー りすりす/TwoSquirrelsりすりす/TwoSquirrels
提出日時 2023-08-13 18:21:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 611 ms / 9,973 ms
コード長 295 bytes
コンパイル時間 3,737 ms
コンパイル使用メモリ 392,932 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 11:00:01
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 303 ms
6,940 KB
testcase_05 AC 303 ms
6,940 KB
testcase_06 AC 83 ms
6,940 KB
testcase_07 AC 79 ms
6,940 KB
testcase_08 AC 82 ms
6,940 KB
testcase_09 AC 611 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/miller_rabin.hpp>
using namespace std;
namespace mp = boost::multiprecision;

int main() {
  int n;
  cin >> n;
  while (n--) {
    long long int a_i;
    cin >> a_i;
    cout << a_i << " " << mp::miller_rabin_test(a_i, 16) << "\n";
  }
}
0