結果

問題 No.36 素数が嫌い!
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-26 07:52:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 75,824 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-06-27 00:47:51
合計ジャッジ時間 8,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,952 KB
testcase_01 AC 130 ms
54,100 KB
testcase_02 AC 125 ms
54,028 KB
testcase_03 AC 127 ms
54,060 KB
testcase_04 AC 130 ms
54,164 KB
testcase_05 AC 130 ms
54,264 KB
testcase_06 AC 130 ms
54,220 KB
testcase_07 AC 134 ms
54,092 KB
testcase_08 AC 121 ms
52,676 KB
testcase_09 AC 128 ms
54,092 KB
testcase_10 AC 116 ms
52,772 KB
testcase_11 AC 153 ms
54,316 KB
testcase_12 AC 190 ms
54,184 KB
testcase_13 AC 188 ms
54,040 KB
testcase_14 AC 129 ms
54,188 KB
testcase_15 AC 127 ms
54,176 KB
testcase_16 AC 128 ms
54,148 KB
testcase_17 AC 129 ms
54,064 KB
testcase_18 AC 125 ms
53,984 KB
testcase_19 AC 133 ms
53,992 KB
testcase_20 AC 131 ms
54,360 KB
testcase_21 AC 138 ms
54,140 KB
testcase_22 AC 131 ms
53,988 KB
testcase_23 AC 138 ms
54,072 KB
testcase_24 AC 127 ms
53,128 KB
testcase_25 AC 142 ms
54,120 KB
testcase_26 AC 150 ms
54,188 KB
testcase_27 AC 129 ms
53,828 KB
testcase_28 AC 147 ms
54,220 KB
testcase_29 AC 124 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise128{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long n = sc.nextLong();
    int count = 0;
    while(n % 2 == 0){
      n /= 2;
      count++;
    }
    for(long i = 3; i * i <= n; i += 2){
      while(n % i == 0){
        n /= i;
        count++;
      }
    }
    if(n > 1){
      count++;
    }
    if(count > 2){
      System.out.println("YES");
    }else{
      System.out.println("NO");
    }
	}
}
0