結果

問題 No.36 素数が嫌い!
ユーザー kuramukuramu
提出日時 2016-01-29 15:59:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 73,516 KB
実行使用メモリ 37,908 KB
最終ジャッジ日時 2024-06-27 00:39:49
合計ジャッジ時間 4,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
37,628 KB
testcase_01 AC 59 ms
36,968 KB
testcase_02 AC 51 ms
37,052 KB
testcase_03 AC 51 ms
36,792 KB
testcase_04 AC 50 ms
36,828 KB
testcase_05 AC 51 ms
36,908 KB
testcase_06 AC 51 ms
37,028 KB
testcase_07 AC 52 ms
37,148 KB
testcase_08 AC 50 ms
37,096 KB
testcase_09 AC 50 ms
37,036 KB
testcase_10 AC 50 ms
37,232 KB
testcase_11 AC 95 ms
37,904 KB
testcase_12 AC 166 ms
37,828 KB
testcase_13 AC 167 ms
37,708 KB
testcase_14 AC 51 ms
37,204 KB
testcase_15 AC 50 ms
37,152 KB
testcase_16 AC 50 ms
37,012 KB
testcase_17 AC 50 ms
37,192 KB
testcase_18 AC 50 ms
36,640 KB
testcase_19 AC 67 ms
37,864 KB
testcase_20 AC 74 ms
37,740 KB
testcase_21 AC 75 ms
37,908 KB
testcase_22 AC 55 ms
36,712 KB
testcase_23 AC 60 ms
36,856 KB
testcase_24 AC 76 ms
37,752 KB
testcase_25 AC 81 ms
37,712 KB
testcase_26 AC 97 ms
37,752 KB
testcase_27 AC 58 ms
37,168 KB
testcase_28 AC 97 ms
37,684 KB
testcase_29 AC 53 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  long num = Long.parseLong(stdReader.readLine());
	    	  int count = 0;
	    	  for(long i=2;i*i<num+1;i++){
	    		  while(num%i==0){
	    			  num /= i;
	    			  count++;
	    		  }
	    	  }	    	  
	    	  if(num>1) count++;
	    	  if(count >= 3) System.out.println("YES");
	    	  else System.out.println("NO");

	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
	
}
0