結果

問題 No.36 素数が嫌い!
ユーザー scachescache
提出日時 2014-10-09 20:58:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 3,388 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-27 00:12:28
合計ジャッジ時間 8,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,024 KB
testcase_01 AC 124 ms
52,980 KB
testcase_02 AC 131 ms
54,260 KB
testcase_03 AC 129 ms
54,276 KB
testcase_04 AC 128 ms
54,044 KB
testcase_05 AC 130 ms
53,956 KB
testcase_06 AC 127 ms
53,880 KB
testcase_07 AC 124 ms
54,128 KB
testcase_08 AC 126 ms
54,148 KB
testcase_09 AC 126 ms
54,152 KB
testcase_10 AC 124 ms
53,900 KB
testcase_11 AC 170 ms
54,024 KB
testcase_12 AC 244 ms
54,196 KB
testcase_13 AC 228 ms
52,936 KB
testcase_14 AC 131 ms
54,000 KB
testcase_15 AC 128 ms
54,260 KB
testcase_16 AC 129 ms
54,032 KB
testcase_17 AC 131 ms
54,352 KB
testcase_18 AC 129 ms
54,080 KB
testcase_19 AC 137 ms
54,252 KB
testcase_20 AC 134 ms
54,268 KB
testcase_21 AC 148 ms
54,288 KB
testcase_22 AC 133 ms
54,224 KB
testcase_23 AC 132 ms
54,112 KB
testcase_24 AC 150 ms
54,376 KB
testcase_25 AC 154 ms
53,980 KB
testcase_26 AC 159 ms
52,860 KB
testcase_27 AC 134 ms
54,356 KB
testcase_28 AC 165 ms
54,028 KB
testcase_29 AC 132 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * yukicoder no.36
 * @author scache
 *
 */
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){
		int count = 0;
		for(long i=2;i*i<=n;i++){
			while(n%i == 0){
				n /= i;
				count++;
			}
		}
		
		if(n>1)
			count++;
		
		if(count>=3)
			return "YES";
		else
			return "NO";
	}
}
0