結果

問題 No.36 素数が嫌い!
ユーザー scachescache
提出日時 2014-10-08 01:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 1,301 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 78,720 KB
実行使用メモリ 82,700 KB
最終ジャッジ日時 2024-06-27 00:12:44
合計ジャッジ時間 13,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
82,320 KB
testcase_01 AC 299 ms
82,368 KB
testcase_02 AC 312 ms
82,276 KB
testcase_03 AC 323 ms
82,320 KB
testcase_04 AC 302 ms
81,784 KB
testcase_05 AC 323 ms
82,460 KB
testcase_06 AC 296 ms
82,576 KB
testcase_07 AC 301 ms
82,300 KB
testcase_08 AC 286 ms
82,236 KB
testcase_09 AC 290 ms
82,176 KB
testcase_10 AC 312 ms
82,580 KB
testcase_11 AC 317 ms
82,244 KB
testcase_12 AC 299 ms
82,700 KB
testcase_13 AC 303 ms
82,584 KB
testcase_14 AC 281 ms
82,560 KB
testcase_15 AC 285 ms
82,256 KB
testcase_16 AC 317 ms
82,292 KB
testcase_17 AC 325 ms
82,604 KB
testcase_18 AC 287 ms
82,116 KB
testcase_19 AC 316 ms
82,576 KB
testcase_20 AC 303 ms
82,316 KB
testcase_21 AC 309 ms
82,452 KB
testcase_22 AC 319 ms
82,556 KB
testcase_23 AC 288 ms
82,288 KB
testcase_24 AC 301 ms
82,460 KB
testcase_25 AC 317 ms
82,456 KB
testcase_26 AC 306 ms
82,352 KB
testcase_27 AC 310 ms
82,052 KB
testcase_28 AC 311 ms
82,300 KB
testcase_29 AC 324 ms
81,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class NotLikePrimeNumber{
	public static void main(String[] args) {
		NotLikePrimeNumber p = new NotLikePrimeNumber();
	}

	public NotLikePrimeNumber(){
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		System.out.println(solve(n));
	}
	
	public String solve(long n) {
		
		// 素数のリストを作る
		// 最低でもsqrt(N)以下の素数を求める
		// ここではエラトステネスのふるいを使っている
		boolean[] hurui = new boolean[10000000+1];
		Arrays.fill(hurui, true);
		hurui[0] = hurui[1] = false;
		ArrayList<Long> primeList = new ArrayList<Long>(); 
		for(int i=2;i<hurui.length;i++){
			if(hurui[i]){
				primeList.add((long)i);
				
				for(int j=i*2;j<hurui.length;j+=i){
					hurui[j] = false;
				}
			}
		}
		
		// 上で求めた素数リストを元に
		// Nを素因数分解
		int count = 0;
		ArrayList<Long> primeFactorList = new ArrayList<Long>();
		for(long prime: primeList){
			while(n%prime == 0){
				n /= prime;
				count++;
				primeFactorList.add(prime);
			}
			
			if(count>=3)
				break;
		}
		
		if(count>=3 || (count==2 && n!=1))
			return "YES";
		else
			return "NO";
		
	}
}
0