結果

問題 No.36 素数が嫌い!
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 00:46:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-06-06 00:54:33
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
52,840 KB
testcase_01 AC 213 ms
53,852 KB
testcase_02 AC 123 ms
54,104 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 118 ms
53,444 KB
testcase_08 AC 120 ms
53,788 KB
testcase_09 AC 124 ms
53,924 KB
testcase_10 AC 124 ms
54,208 KB
testcase_11 AC 148 ms
53,028 KB
testcase_12 AC 234 ms
53,856 KB
testcase_13 WA -
testcase_14 AC 183 ms
53,128 KB
testcase_15 AC 128 ms
54,076 KB
testcase_16 AC 112 ms
52,748 KB
testcase_17 AC 123 ms
54,432 KB
testcase_18 AC 125 ms
54,028 KB
testcase_19 AC 170 ms
53,884 KB
testcase_20 AC 227 ms
53,068 KB
testcase_21 AC 209 ms
53,808 KB
testcase_22 AC 216 ms
54,136 KB
testcase_23 AC 176 ms
54,108 KB
testcase_24 AC 187 ms
53,980 KB
testcase_25 AC 180 ms
53,824 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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)>=1?"YES":"NO");
	}
	
	static int PrimeFact (long n) {
		double sqrt = Math.sqrt(n);
		int total = 0;
		for (int i=2; i<=sqrt; i++) {
			boolean b = false;
			while (n%i==0) {
				n /= i;
				b = true;
			}
			if (b==true) {total++;}
		}
		return total;
	}
}
0