結果
問題 | No.36 素数が嫌い! |
ユーザー | ぴろず |
提出日時 | 2014-12-16 21:45:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 317 ms / 5,000 ms |
コード長 | 1,631 bytes |
コンパイル時間 | 2,350 ms |
コンパイル使用メモリ | 78,196 KB |
実行使用メモリ | 69,764 KB |
最終ジャッジ日時 | 2024-06-27 00:14:54 |
合計ジャッジ時間 | 9,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 224 ms
55,260 KB |
testcase_01 | AC | 272 ms
62,580 KB |
testcase_02 | AC | 134 ms
41,572 KB |
testcase_03 | AC | 135 ms
41,388 KB |
testcase_04 | AC | 137 ms
41,212 KB |
testcase_05 | AC | 140 ms
41,712 KB |
testcase_06 | AC | 140 ms
41,428 KB |
testcase_07 | AC | 139 ms
41,516 KB |
testcase_08 | AC | 137 ms
41,400 KB |
testcase_09 | AC | 139 ms
41,492 KB |
testcase_10 | AC | 139 ms
41,580 KB |
testcase_11 | AC | 195 ms
52,048 KB |
testcase_12 | AC | 309 ms
68,908 KB |
testcase_13 | AC | 317 ms
69,020 KB |
testcase_14 | AC | 246 ms
58,264 KB |
testcase_15 | AC | 133 ms
41,712 KB |
testcase_16 | AC | 138 ms
41,340 KB |
testcase_17 | AC | 136 ms
41,248 KB |
testcase_18 | AC | 135 ms
41,536 KB |
testcase_19 | AC | 235 ms
54,780 KB |
testcase_20 | AC | 314 ms
69,016 KB |
testcase_21 | AC | 254 ms
62,076 KB |
testcase_22 | AC | 261 ms
62,816 KB |
testcase_23 | AC | 227 ms
55,036 KB |
testcase_24 | AC | 240 ms
55,596 KB |
testcase_25 | AC | 236 ms
55,208 KB |
testcase_26 | AC | 241 ms
57,984 KB |
testcase_27 | AC | 314 ms
69,764 KB |
testcase_28 | AC | 239 ms
57,756 KB |
testcase_29 | AC | 312 ms
68,436 KB |
ソースコード
package no036; import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); SeiveOfEratosthenes.init(n+1); if (SeiveOfEratosthenes.primeFactor(n).size() >= 3) { System.out.println("YES"); }else{ System.out.println("NO"); } } } class SeiveOfEratosthenes { private static long max_number; private static int max_number_sieve; private static boolean[] is_not_prime; private static ArrayList<Integer> prime = new ArrayList<Integer>(); public static void init(long maxnum) { max_number = maxnum; max_number_sieve = (int) Math.sqrt(max_number); is_not_prime = new boolean[max_number_sieve+1]; is_not_prime[0] = is_not_prime[1] = true; for(int i=2;i*i<=max_number_sieve;i++) { if (!is_not_prime[i]) { int j = 2; while(i*j<=max_number_sieve) { is_not_prime[i*j] = true; j++; } } } for(int i=2;i<=max_number_sieve;i++) { if(!is_not_prime[i]) { prime.add(i); } } } public static boolean isPrime(long n) { if (n>max_number) { return false; } if (n<=max_number_sieve) { return !is_not_prime[(int) n]; }else{ for(int p:prime) { if (n%p==0 && n!=p) { return false; } } return true; } } public static ArrayList<Long> primeFactor(long n) { ArrayList<Long> factor = new ArrayList<Long>(); for(int p:prime) { while(n%p==0) { n/=p; factor.add((long) p); } } if (n > 1) { factor.add(n); } return factor; } }