結果

問題 No.774 tatyamと素数大富豪
ユーザー 37zigen37zigen
提出日時 2020-04-20 03:54:01
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,107 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 72,952 KB
最終ジャッジ日時 2024-10-06 08:26:45
合計ジャッジ時間 21,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
62,632 KB
testcase_01 AC 135 ms
54,400 KB
testcase_02 TLE -
testcase_03 AC 208 ms
56,572 KB
testcase_04 AC 153 ms
54,448 KB
testcase_05 AC 223 ms
56,584 KB
testcase_06 AC 131 ms
54,156 KB
testcase_07 AC 132 ms
54,572 KB
testcase_08 AC 120 ms
53,028 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,204 ms
71,080 KB
testcase_12 AC 931 ms
66,008 KB
testcase_13 AC 548 ms
63,044 KB
testcase_14 AC 469 ms
63,052 KB
testcase_15 AC 1,373 ms
71,528 KB
testcase_16 TLE -
testcase_17 AC 1,945 ms
70,440 KB
testcase_18 AC 1,126 ms
71,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

public class Main {

	void run() {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		String[] a=new String[n];
		for (int i=0;i<n;++i) a[i]=sc.next();
		int[] ord=new int[n];
		for (int i=0;i<n;++i) ord[i]=i;
		long ans=-1;
		do {
			StringBuilder v=new StringBuilder();
			for (int i=0;i<n;++i) v.append(a[ord[i]]);
			if (ans>Long.valueOf(v.toString())) continue;
			if (new BigInteger(v.toString()).isProbablePrime(10)) ans=Math.max(ans, Long.valueOf(v.toString()));
		} while (nextPermutation(ord));
		System.out.println(ans);
	}
	
	boolean nextPermutation(int[] a) {
		int n=a.length;
		int p=n-1;
		while (p>0 && a[p-1]>a[p]) --p;
		if (p==0) return false;
		int q=p;
		while (q+1<n && a[p-1]<a[q+1]) ++q;
		a[p-1]^=a[q];a[q]^=a[p-1];a[p-1]^=a[q];
		int s=p,t=n-1;
		while (s<t) {
			a[s]^=a[t];a[t]^=a[s];a[s]^=a[t];
			++s;--t;
		}
		return true;
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
	public static void main(String[] args) {
    	new Main().run();
    }
}

0