結果

問題 No.36 素数が嫌い!
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 15:03:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-06 13:53:29
合計ジャッジ時間 6,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
53,804 KB
testcase_01 AC 186 ms
54,172 KB
testcase_02 AC 105 ms
53,864 KB
testcase_03 AC 92 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 92 ms
52,528 KB
testcase_06 AC 106 ms
53,768 KB
testcase_07 AC 106 ms
53,988 KB
testcase_08 AC 95 ms
52,916 KB
testcase_09 AC 107 ms
53,736 KB
testcase_10 AC 104 ms
53,560 KB
testcase_11 AC 140 ms
53,848 KB
testcase_12 AC 206 ms
53,272 KB
testcase_13 WA -
testcase_14 AC 170 ms
53,884 KB
testcase_15 AC 107 ms
53,900 KB
testcase_16 AC 105 ms
52,888 KB
testcase_17 AC 103 ms
54,000 KB
testcase_18 AC 106 ms
52,980 KB
testcase_19 AC 146 ms
53,892 KB
testcase_20 AC 205 ms
53,720 KB
testcase_21 AC 182 ms
53,912 KB
testcase_22 AC 174 ms
53,048 KB
testcase_23 AC 156 ms
54,176 KB
testcase_24 AC 155 ms
52,832 KB
testcase_25 AC 161 ms
53,764 KB
testcase_26 AC 169 ms
54,068 KB
testcase_27 AC 194 ms
54,216 KB
testcase_28 AC 163 ms
54,228 KB
testcase_29 AC 208 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		if(N == 1){
			System.out.println("NO");
			return;
		}
		
		final int sqrt_N = (int)(Math.floor(Math.sqrt(N)));
		long cur_N = N;
		int types = 0, max_counts = 0;
		for(int i = 2; i <= sqrt_N; i++){
			int count = 0;
			while(cur_N % i == 0){
				count++;
				cur_N /= i;
			}
			
			max_counts = Math.max(max_counts, count);
			if(count != 0){
				types++;
			}
		}
		
		if(cur_N != 0){
			types++;
		}
		
		if(types >= 3 || max_counts >= 2){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		
	}
	
}
0