結果

問題 No.774 tatyamと素数大富豪
ユーザー cielciel
提出日時 2019-01-04 23:10:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,267 ms / 2,000 ms
コード長 1,707 bytes
コンパイル時間 1,358 ms
コンパイル使用メモリ 99,448 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 02:50:03
合計ジャッジ時間 5,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <numeric>
#include <algorithm>

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
typedef unsigned long long ull;

#if __SIZEOF_POINTER__==8
static inline ull mul(__uint128_t x,ull y,ull m){return x*y%m;}
#elif __SIZEOF_POINTER__==4
static inline ull mul(ull x,ull y,ull m){
	ull z=0;
	for(;y;y>>=1){
		if(y&1){z+=x;if(z>=m)z-=m;}
		x+=x;if(x>=m)x-=m;
	}
	return z;
}
#else
#error mul is not supported
#endif
static inline ull powmod(ull x,ull y,ull m){
	ull z=1;
	for(;y;y>>=1){
		if(y&1)z=mul(z,x,m);
		x=mul(x,x,m);
	}
	return z;
}

static unsigned int x = 123456789;
static unsigned int y = 362436069;
static unsigned int z = 521288629;
static unsigned int w = 88675123; 

unsigned int xor_rand(){
	unsigned int t;
	t=x^(x<<11);
	x=y;y=z;z=w;
	return w=(w^(w>>19)) ^ (t^(t>>8));
}

ull gcd(ull x,ull y){return y?gcd(y,x%y):x;}
bool miller_rabin(ull n){
	if(n==2)return true;
	if(n==1||n%2==0)return false;
	ull d=n-1,s=0,a=1;
	for(;d%2==0;d/=2)s+=1;
	for(int k=7;k--;){ //todo
		//for(a++;gcd(a,n)!=1;a++); //todo
		for(a=0;gcd(a,n)!=1;)a=xor_rand()%~-n+1;
		ull r=powmod(a,d,n);
		if(r==1||r==n-1)continue;
		int t=s;
		for(;t;t--){
			r=powmod(r,2,n);
			if(r==n-1)break;
		}
		if(!t)return false;
	}
	return true;
}

int main(){
	int n;
	std::cin>>n;
	std::vector<std::string> v(n);
	for(int i=0;i<n;i++)std::cin>>v[i];
	std::sort(v.begin(),v.end());
	ull r=0;
	do{
		std::string s=std::accumulate(v.begin(),v.end(),std::string(""));
		ull x=std::stoull(s);
		if(miller_rabin(x))r=std::max(r,x);
	}while(std::next_permutation(v.begin(),v.end()));
	std::cout<<(r==0 ? "-1" : std::to_string(r))<<std::endl;
}
0