結果
問題 | No.36 素数が嫌い! |
ユーザー | chiho_miyako |
提出日時 | 2015-04-15 02:22:33 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,485 bytes |
コンパイル時間 | 1,851 ms |
コンパイル使用メモリ | 77,672 KB |
実行使用メモリ | 54,380 KB |
最終ジャッジ日時 | 2024-07-04 14:33:25 |
合計ジャッジ時間 | 8,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 267 ms
53,804 KB |
testcase_03 | AC | 276 ms
54,068 KB |
testcase_04 | AC | 272 ms
53,932 KB |
testcase_05 | WA | - |
testcase_06 | AC | 283 ms
53,820 KB |
testcase_07 | AC | 272 ms
53,924 KB |
testcase_08 | AC | 279 ms
53,876 KB |
testcase_09 | AC | 279 ms
52,892 KB |
testcase_10 | AC | 270 ms
54,180 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 264 ms
52,768 KB |
testcase_16 | AC | 279 ms
54,132 KB |
testcase_17 | AC | 256 ms
52,856 KB |
testcase_18 | AC | 260 ms
52,944 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int num = koko.nextInt(); int counter = 0; int ptr = 0; int[] prime = new int[10000]; prime[ptr++] = 2; prime[ptr++] = 3; for (int n = 5; n <= 100000; n += 2) { int i; for (i = 1; i < ptr; i++) { counter++; if (n % prime[i] == 0) break; } if (ptr == i) prime[ptr++] = n; } int count=0; int mul=1; for(int j=0; j<ptr; j++){ if(num<=prime[j]){ break; }else if(num%prime[j]==0){ count++; mul=mul*prime[j]; } } if(count>2){ System.out.println("YES"); }else if(count==2){ if(mul==num){ System.out.println("NO"); }else{ System.out.println("YES"); } }else if(count==1){ if(mul*mul==num){ System.out.println("NO"); }else{ System.out.println("YES"); } }else if(count==0){ System.out.println("NO"); } } }