結果

問題 No.36 素数が嫌い!
ユーザー kou6839kou6839
提出日時 2014-12-08 16:23:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 56,340 KB
最終ジャッジ日時 2024-06-11 18:26:21
合計ジャッジ時間 6,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 100 ms
53,016 KB
testcase_03 AC 111 ms
54,156 KB
testcase_04 AC 102 ms
53,024 KB
testcase_05 AC 106 ms
53,080 KB
testcase_06 AC 117 ms
54,040 KB
testcase_07 AC 102 ms
52,820 KB
testcase_08 AC 103 ms
53,052 KB
testcase_09 AC 112 ms
54,428 KB
testcase_10 WA -
testcase_11 AC 147 ms
54,000 KB
testcase_12 AC 203 ms
53,176 KB
testcase_13 AC 214 ms
52,984 KB
testcase_14 AC 105 ms
52,984 KB
testcase_15 WA -
testcase_16 AC 112 ms
54,164 KB
testcase_17 AC 96 ms
52,852 KB
testcase_18 AC 112 ms
56,068 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 148 ms
53,924 KB
testcase_27 AC 116 ms
54,244 KB
testcase_28 AC 148 ms
54,128 KB
testcase_29 AC 105 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;


public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n=sc.nextLong();
		if(n==1){
			System.out.println("NO");
			return;
		}
		int count=0;
		for(long i=2;i*i<=n;i++){
			while(n%i==0){
				n/=i;
				count++;
			}
		}
		if(count>2){
			System.out.println("YES");
		}else
		System.out.println("NO");
	}
}	
0