結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
54,020 KB
testcase_01 AC 185 ms
52,612 KB
testcase_02 AC 107 ms
52,936 KB
testcase_03 AC 99 ms
52,860 KB
testcase_04 WA -
testcase_05 AC 110 ms
53,584 KB
testcase_06 AC 116 ms
53,692 KB
testcase_07 AC 113 ms
54,116 KB
testcase_08 AC 111 ms
53,964 KB
testcase_09 AC 113 ms
53,944 KB
testcase_10 AC 112 ms
53,952 KB
testcase_11 AC 135 ms
53,048 KB
testcase_12 AC 214 ms
53,832 KB
testcase_13 WA -
testcase_14 AC 182 ms
53,888 KB
testcase_15 AC 107 ms
53,808 KB
testcase_16 AC 100 ms
54,272 KB
testcase_17 AC 110 ms
53,620 KB
testcase_18 AC 107 ms
53,864 KB
testcase_19 AC 153 ms
53,820 KB
testcase_20 AC 219 ms
52,732 KB
testcase_21 AC 193 ms
53,324 KB
testcase_22 AC 184 ms
52,548 KB
testcase_23 AC 165 ms
53,928 KB
testcase_24 AC 161 ms
52,980 KB
testcase_25 AC 174 ms
54,240 KB
testcase_26 AC 181 ms
53,572 KB
testcase_27 AC 194 ms
52,732 KB
testcase_28 AC 166 ms
52,560 KB
testcase_29 AC 213 ms
53,948 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 != 1){
			types++;
		}
		
		if(types >= 3 || max_counts >= 2){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		
	}
	
}
0