結果

問題 No.36 素数が嫌い!
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 00:49:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-06-27 01:18:19
合計ジャッジ時間 8,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
54,204 KB
testcase_01 AC 222 ms
53,816 KB
testcase_02 AC 114 ms
53,832 KB
testcase_03 AC 131 ms
54,024 KB
testcase_04 AC 131 ms
54,028 KB
testcase_05 AC 128 ms
54,084 KB
testcase_06 AC 128 ms
53,852 KB
testcase_07 AC 131 ms
54,080 KB
testcase_08 AC 126 ms
54,140 KB
testcase_09 AC 130 ms
54,124 KB
testcase_10 AC 128 ms
54,192 KB
testcase_11 AC 166 ms
54,168 KB
testcase_12 AC 247 ms
54,172 KB
testcase_13 AC 231 ms
52,932 KB
testcase_14 AC 200 ms
53,964 KB
testcase_15 AC 130 ms
54,036 KB
testcase_16 AC 133 ms
54,140 KB
testcase_17 AC 132 ms
53,904 KB
testcase_18 AC 130 ms
53,856 KB
testcase_19 AC 178 ms
53,924 KB
testcase_20 AC 252 ms
54,156 KB
testcase_21 AC 218 ms
54,064 KB
testcase_22 AC 219 ms
54,128 KB
testcase_23 AC 185 ms
54,244 KB
testcase_24 AC 194 ms
54,036 KB
testcase_25 AC 178 ms
53,864 KB
testcase_26 AC 204 ms
54,276 KB
testcase_27 AC 224 ms
53,704 KB
testcase_28 AC 198 ms
53,892 KB
testcase_29 AC 242 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		System.out.println(PrimeFact(n)>=2?"YES":"NO");
	}
	
	static int PrimeFact (long n) {
		double sqrt = Math.sqrt(n);
		int total = 0;
		for (int i=2; i<sqrt; i++) {
			int num = 0;
			while (n%i==0) {
				n /= i;
				num++;
			}
			total += num;
		}
		return total;
	}
}
0