結果

問題 No.774 tatyamと素数大富豪
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-25 03:08:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,309 ms / 2,000 ms
コード長 1,842 bytes
コンパイル時間 3,532 ms
コンパイル使用メモリ 91,448 KB
実行使用メモリ 55,256 KB
最終ジャッジ日時 2024-09-16 04:45:22
合計ジャッジ時間 11,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,309 ms
55,256 KB
testcase_01 AC 143 ms
41,544 KB
testcase_02 AC 116 ms
40,332 KB
testcase_03 AC 208 ms
43,956 KB
testcase_04 AC 166 ms
42,548 KB
testcase_05 AC 135 ms
41,340 KB
testcase_06 AC 104 ms
40,300 KB
testcase_07 AC 104 ms
39,776 KB
testcase_08 AC 105 ms
40,044 KB
testcase_09 AC 360 ms
49,608 KB
testcase_10 AC 171 ms
41,664 KB
testcase_11 AC 338 ms
49,876 KB
testcase_12 AC 1,087 ms
54,852 KB
testcase_13 AC 604 ms
53,716 KB
testcase_14 AC 244 ms
44,700 KB
testcase_15 AC 476 ms
51,152 KB
testcase_16 AC 255 ms
46,012 KB
testcase_17 AC 186 ms
42,000 KB
testcase_18 AC 303 ms
48,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.Math.*;
import static java.math.BigInteger.*;
import static java.util.Arrays.*;
import static java.util.Collections.*;
import java.math.*;
import java.util.*;
import java.io.*;

public class y774 {
  public static void main(String[] args) { new y774().run(); }
  Scanner in = new Scanner(System.in);
  void _out(Object...os) { System.out.println(deepToString(os)); }
  void _err(Object...os) { System.err.println(deepToString(os)); }

  int N;
  int[] A;
  
  int[] work;
  
  void run() {
    for (; in.hasNext(); ) {
      N = in.nextInt();
      A = new int[N];
      for (int i = 0; i < N; ++i) {
        A[i] = in.nextInt();
      }
      sort(A);
      work = new int[N];
      BigInteger ans = valueOf(-1);
      do {
        if (N >= 2 && (A[N - 1] % 2 == 0 || A[N - 1] % 5 == 0)) {
          continue;
        }
        String str = "";
        for (int i = 0; i < N; ++i) {
          str += Integer.toString(A[i]);
        }
        BigInteger x = new BigInteger(str);
        if (ans.compareTo(x) < 0) {
          if (x.isProbablePrime(100)) {
            ans = x;
          }
        }
      } while (nextPermutation());
      System.out.println(ans);
    }
  }
  
  boolean nextPermutation() {
    for (int i = N - 2; i >= 0; --i) {
      if (A[i] < A[i + 1]) {
        for (int j = N - 1; j > i; --j) {
          if (A[i] < A[j]) {
            int workLen = 0;
            work[workLen++] = A[j];
            for (int k = N - 1; k > j; --k) {
              work[workLen++] = A[k];
            }
            work[workLen++] = A[i];
            for (int k = j - 1; k > i; --k) {
              work[workLen++] = A[k];
            }
            for (int k = i; k < N; ++k) {
              A[k] = work[k - i];
            }
            return true;
          }
        }
      }
    }
    return false;
  }
}
0