結果

問題 No.774 tatyamと素数大富豪
ユーザー 37zigen37zigen
提出日時 2020-04-20 04:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,451 ms / 2,000 ms
コード長 1,472 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 80,244 KB
実行使用メモリ 60,200 KB
最終ジャッジ日時 2024-10-06 08:27:42
合計ジャッジ時間 11,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,451 ms
60,200 KB
testcase_01 AC 134 ms
41,692 KB
testcase_02 AC 129 ms
41,212 KB
testcase_03 AC 266 ms
45,980 KB
testcase_04 AC 156 ms
41,304 KB
testcase_05 AC 139 ms
41,316 KB
testcase_06 AC 129 ms
41,192 KB
testcase_07 AC 138 ms
41,608 KB
testcase_08 AC 129 ms
41,300 KB
testcase_09 AC 130 ms
41,264 KB
testcase_10 AC 153 ms
41,664 KB
testcase_11 AC 274 ms
44,744 KB
testcase_12 AC 1,253 ms
54,420 KB
testcase_13 AC 870 ms
54,004 KB
testcase_14 AC 130 ms
40,892 KB
testcase_15 AC 338 ms
47,772 KB
testcase_16 AC 279 ms
44,952 KB
testcase_17 AC 205 ms
42,236 KB
testcase_18 AC 273 ms
44,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.ArrayList;
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];
		ArrayList<String> b=new ArrayList<String>();
		long sum=0;
		for (int i=0;i<n;++i) {
			a[i]=sc.next();
			sum+=Integer.valueOf(a[i]);
		}
		Arrays.sort(a);
		int[] ord=new int[n];
		{
			int p=0;
			for (int i=0;i<n;++i) {
				b.add(a[i]);
				int j=i;
				while (j+1<n && a[i].equals(a[j+1])) {
					++j;
				}
				for (int k=i;k<=j;++k) {
					ord[k]=p;
				}
				i=j;
				++p;
			}
		}
		long ans=-1;
		if (sum%3!=0&&sum%9!=0) {
			do {
				StringBuilder v=new StringBuilder();
				for (int i=0;i<n;++i) v.append(b.get(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