結果
問題 | No.12 限定された素数 |
ユーザー | core123 |
提出日時 | 2019-04-18 16:48:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 560 ms / 5,000 ms |
コード長 | 2,101 bytes |
コンパイル時間 | 2,768 ms |
コンパイル使用メモリ | 80,596 KB |
実行使用メモリ | 80,372 KB |
最終ジャッジ日時 | 2024-05-03 10:57:00 |
合計ジャッジ時間 | 16,321 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 431 ms
77,948 KB |
testcase_01 | AC | 539 ms
79,636 KB |
testcase_02 | AC | 459 ms
78,096 KB |
testcase_03 | AC | 482 ms
77,404 KB |
testcase_04 | AC | 442 ms
78,132 KB |
testcase_05 | AC | 469 ms
79,016 KB |
testcase_06 | AC | 480 ms
79,180 KB |
testcase_07 | AC | 455 ms
76,668 KB |
testcase_08 | AC | 487 ms
78,928 KB |
testcase_09 | AC | 522 ms
80,372 KB |
testcase_10 | AC | 484 ms
78,888 KB |
testcase_11 | AC | 516 ms
77,200 KB |
testcase_12 | AC | 499 ms
77,244 KB |
testcase_13 | AC | 560 ms
80,020 KB |
testcase_14 | AC | 540 ms
79,916 KB |
testcase_15 | AC | 540 ms
79,944 KB |
testcase_16 | AC | 493 ms
76,736 KB |
testcase_17 | AC | 388 ms
74,384 KB |
testcase_18 | AC | 430 ms
78,048 KB |
testcase_19 | AC | 447 ms
77,816 KB |
testcase_20 | AC | 450 ms
78,144 KB |
testcase_21 | AC | 464 ms
79,048 KB |
testcase_22 | AC | 432 ms
78,096 KB |
testcase_23 | AC | 458 ms
78,068 KB |
testcase_24 | AC | 467 ms
77,820 KB |
testcase_25 | AC | 476 ms
79,456 KB |
ソースコード
import java.util.*; import java.util.stream.*; import static java.lang.Math.*; public class Main{ public static void main(String... args){ Scanner sc=new Scanner(System.in); boolean[] isPrime=new boolean[5000001]; Arrays.fill(isPrime,true); isPrime[0]=false; isPrime[1]=false; for(int i=2;i<isPrime.length;i++){ for(int j=2*i;j<isPrime.length;j+=i){ isPrime[j]=false; } } List<Integer> primes=new ArrayList<>(); for(int i=0;i<isPrime.length;i++){ if(isPrime[i])primes.add(i); } int n=sc.nextInt(); boolean[] canUses=new boolean[10]; for(int i=0;i<n;i++){ canUses[sc.nextInt()]=true; } int max=-1; main:for(int i=0;i<primes.size();i++){ if(!canUse(primes.get(i),canUses))continue; Set<Integer> set=new HashSet<>(); int j=i; while(j<primes.size()&&canUse(primes.get(j),canUses)){ for(char c:Integer.toString(primes.get(j)).toCharArray()){ set.add(c-'0'); } j++; } //put("(i,j)=(%d,%d)",i,j); for(int k=0;k<10;k++){ if(!canUses[k])continue; if(!set.contains(k)){ i=j; continue main; } } int l=i-1<0?1:primes.get(i-1)+1; int r=j>=primes.size()?5000000:primes.get(j)-1; //put("(l,r)=(%d,%d)",l,r); max=max(max,r-l); i=j; } put(max); } public static boolean canUse(int x,boolean[] canUses){ for(char c:Integer.toString(x).toCharArray()){ if(!canUses[c-'0'])return false; } return true; } public static class Pair{ final int x,y; Pair(int x,int y){ this.x=x; this.y=y; } @Override public String toString(){ return String.format("Pair(%d,%d)",x,y); } } public static void print(Object object){ System.out.print(object); } public static void put(Object object) { System.out.println(object); } public static void put(){ System.out.println(); } public static void print(String format,Object... args){ System.out.print(String.format(format,args)); } public static void put(String format,Object... args) { System.out.println(String.format(format,args)); } }