結果
問題 | No.12 限定された素数 |
ユーザー | takeya_okino |
提出日時 | 2019-09-12 22:18:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,890 bytes |
コンパイル時間 | 4,442 ms |
コンパイル使用メモリ | 78,884 KB |
実行使用メモリ | 106,492 KB |
最終ジャッジ日時 | 2024-07-02 17:12:55 |
合計ジャッジ時間 | 11,108 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] a = new int[n]; for(int i = 0; i < n; i++) { a[i] = sc.nextInt(); } int[] A = new int[10]; for(int i = 0; i < n; i++) { A[a[i]] = 1; } int ans = -1; ArrayList<Integer> prime = new ArrayList<Integer>(); boolean[] is_prime = new boolean[5000001]; for(int i = 0; i <= 5000000; i++) is_prime[i] = true; is_prime[0] = false; is_prime[1] = false; for(int i = 2; i <= 5000000; i++) { if(is_prime[i]) { prime.add((int)i); for(int j = 2 * i; j <= 5000000; j += i) is_prime[j] = false; } } int[] P = new int[5000001]; for(int i = 0; i < prime.size(); i++) { P[prime.get(i)] = 1; } int p = 1; for(int i = 1; i <= 5000000; i++) { int[] keta = new int[10]; int t = 0; for(int j = p; j <= 5000000; j++) { if(P[j] == 1) { String str = String.valueOf(j); for(int k = 0; k < str.length(); k++) { int sk = Integer.parseInt(String.valueOf(str.charAt(k))); keta[sk]++; } int c = 2; for(int k = 0; k < 10; k++) { if(A[k] == 1) { if(keta[k] == 0) c = Math.min(c, 1); } else { if(keta[k] == 1) c = Math.min(c, -1); } } if(c == 2) { ans = Math.max(ans, j - i + 1); if(j == 5000000) { p = 5000001; break; } } else if(c == 1) { if(j == 5000000) { p = 5000001; break; } } else { p = Math.max(i + 1, j); break; } } } } System.out.println(ans); } }