結果

問題 No.36 素数が嫌い!
ユーザー rf141rf141
提出日時 2015-08-06 00:30:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-27 00:23:54
合計ジャッジ時間 9,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
53,928 KB
testcase_01 AC 134 ms
54,108 KB
testcase_02 AC 129 ms
54,208 KB
testcase_03 AC 132 ms
54,184 KB
testcase_04 AC 131 ms
53,956 KB
testcase_05 AC 132 ms
54,028 KB
testcase_06 AC 131 ms
54,120 KB
testcase_07 AC 132 ms
53,920 KB
testcase_08 AC 130 ms
53,976 KB
testcase_09 AC 130 ms
54,128 KB
testcase_10 AC 126 ms
53,872 KB
testcase_11 AC 176 ms
54,064 KB
testcase_12 AC 243 ms
54,180 KB
testcase_13 AC 245 ms
54,108 KB
testcase_14 AC 131 ms
53,804 KB
testcase_15 AC 130 ms
54,096 KB
testcase_16 AC 130 ms
54,004 KB
testcase_17 AC 132 ms
53,948 KB
testcase_18 AC 129 ms
54,032 KB
testcase_19 AC 139 ms
54,028 KB
testcase_20 AC 138 ms
54,012 KB
testcase_21 AC 148 ms
54,156 KB
testcase_22 AC 132 ms
53,924 KB
testcase_23 AC 138 ms
54,108 KB
testcase_24 AC 147 ms
54,092 KB
testcase_25 AC 149 ms
54,096 KB
testcase_26 AC 168 ms
54,088 KB
testcase_27 AC 129 ms
54,020 KB
testcase_28 AC 167 ms
53,860 KB
testcase_29 AC 132 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class hate{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		System.out.println(judge(n));
	}
	public static String judge(long n){
		long N = 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";
		return "NO";
	}
}
0