結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | neko_the_shadow |
提出日時 | 2019-02-21 11:44:59 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,266 bytes |
コンパイル時間 | 2,577 ms |
コンパイル使用メモリ | 81,952 KB |
実行使用メモリ | 249,604 KB |
最終ジャッジ日時 | 2024-11-17 09:47:20 |
合計ジャッジ時間 | 36,126 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 142 ms
167,868 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 286 ms
46,200 KB |
testcase_04 | AC | 204 ms
42,264 KB |
testcase_05 | AC | 274 ms
45,380 KB |
testcase_06 | AC | 138 ms
41,056 KB |
testcase_07 | AC | 141 ms
41,572 KB |
testcase_08 | AC | 138 ms
41,180 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 568 ms
58,024 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
ソースコード
package _0774; import java.math.BigInteger; import java.util.ArrayDeque; import java.util.Deque; import java.util.Scanner; import java.util.stream.IntStream; public class Main { public static void main(String[] args) { Scanner stdin = new Scanner(System.in); int n = stdin.nextInt(); String[] a = new String[n]; IntStream.range(0, n).forEach(i -> a[i] = stdin.next()); Deque<String> strs = new ArrayDeque<>(); Deque<Integer> bits = new ArrayDeque<>(); strs.addLast(""); bits.addLast(0); BigInteger answer = new BigInteger("-1"); while (!strs.isEmpty()) { String str = strs.pollFirst(); int bit = bits.pollFirst(); if (bit == (1 << n) - 1) { BigInteger val = new BigInteger(str); if (val.isProbablePrime(10)) answer = answer.max(val); } else { for (int i = 0; i < n; i++) { if ((bit & (1 << i)) != 0) continue; strs.addLast(str + a[i]); bits.addLast(bit | (1 << i)); } } } System.out.println(answer); } }