結果

問題 No.774 tatyamと素数大富豪
ユーザー kriiikriii
提出日時 2018-12-25 16:19:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,382 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 58,808 KB
実行使用メモリ 30,416 KB
最終ジャッジ日時 2024-10-01 13:25:40
合計ジャッジ時間 7,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 17 ms
5,248 KB
testcase_03 AC 11 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 83 ms
5,248 KB
testcase_10 AC 22 ms
5,248 KB
testcase_11 AC 46 ms
5,248 KB
testcase_12 AC 1,312 ms
10,752 KB
testcase_13 AC 917 ms
11,136 KB
testcase_14 AC 16 ms
5,248 KB
testcase_15 AC 60 ms
5,248 KB
testcase_16 AC 43 ms
5,248 KB
testcase_17 AC 19 ms
5,248 KB
testcase_18 AC 44 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <vector>
#include <set>
using namespace std;
using lint = long long;

lint gcd(lint a, lint b)
{
	return b ? gcd(b,a%b) : a;
}

namespace miller_rabin{
	lint mul(lint x, lint y, lint mod){ return (__int128) x * y % mod; }
	lint ipow(lint x, lint y, lint p){
		lint ret = 1, piv = x % p;
		while(y){
			if(y&1) ret = mul(ret, piv, p);
			piv = mul(piv, piv, p);
			y >>= 1;
		}
		return ret;
	}
	bool miller_rabin(lint x, lint a){
		if(x % a == 0) return 0;
		lint d = x - 1;
		while(1){
			lint tmp = ipow(a, d, x);
			if(d&1) return (tmp != 1 && tmp != x-1);
			else if(tmp == x-1) return 0;
			d >>= 1;
		}
	}
	bool isprime(lint x){
		for(auto &i : {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37}){
			if(x == i) return 1;
			if(x > 40 && miller_rabin(x, i)) return 0;
		}
		if(x <= 40) return 0;
		return 1;
	}
}

set<long long> dup;
bool chk[10]; int N,A[10];
long long ans = -1;
void go(int a, long long v)
{
	if (a < N){
		for (int i=0;i<N;i++) if (!chk[i]){
			chk[i] = 1;
			long long nv = v;
			if (A[i] < 10) nv = nv * 10 + A[i];
			else nv = nv * 100 + A[i];
			go(a+1,nv);
			chk[i] = 0;
		}
	}
	else{
		if (!dup.count(v)){
			dup.insert(v);
			if (miller_rabin::isprime(v)) ans = max(ans,v);
		}
	}
}

int main()
{
	scanf ("%d",&N);
	for (int i=0;i<N;i++) scanf ("%d",&A[i]);
	go(0,0);

	printf ("%lld\n",ans);
	return 0;
}
0