結果

問題 No.774 tatyamと素数大富豪
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-10-07 16:41:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,522 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 173,080 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-20 03:27:08
合計ジャッジ時間 2,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 33 ms
6,940 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.10.07 16:40:58
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

bool MillerRabin(long long v, int loop = 10) {
    long long d = v - 1;
    int s = 0, i, j;
    if (v <= 1) return false;
    if (v == 2) return true;
    if (v % 2 == 0) return false;
    while (d % 2 == 0) d /= 2, s++;
    auto modpow = [](__int128_t a, long long n, long long mo) {
        __int128_t r = 1;
        a %= mo;
        while (n) r = r * ((n % 2) ? a : 1) % mo, a = a * a % mo, n >>= 1;
        return r;
    };
    for (i = 0; i < loop; i++) {
        ll a = abs(1LL * rand() * rand() + rand()) % (v - 2) + 1;
        ll r = modpow(a, d, v);
        if (r == 1 || r == v - 1) continue;
        for (j = 0; j < s; j++) {
            r = modpow(r, 2, v);
            if (r == v - 1) break;
        }
        if (j == s) return false;
    }
    return true;
}
int main() {
    int n;
    cin >> n;
    vector< int > a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a.begin(), a.end());
    ll ans = -1;
    do {
        ll num = 0;
        for (int i = 0; i < n; i++) {
            if (a[i] >= 10) {
                num *= 100;
                num += a[i];
            } else {
                num *= 10;
                num += a[i];
            }
        }
        
        if (ans < num && MillerRabin(num)) ans = max(ans, num);
    } while (next_permutation(a.begin(), a.end()));
    cout << ans << endl;
    return 0;
}
0