結果

問題 No.36 素数が嫌い!
ユーザー tsunabittsunabit
提出日時 2019-09-05 10:37:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2025-01-02 22:55:52
合計ジャッジ時間 8,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,404 KB
testcase_01 AC 122 ms
54,276 KB
testcase_02 AC 119 ms
54,148 KB
testcase_03 AC 123 ms
54,276 KB
testcase_04 AC 115 ms
54,112 KB
testcase_05 AC 111 ms
54,020 KB
testcase_06 AC 118 ms
54,108 KB
testcase_07 AC 117 ms
53,992 KB
testcase_08 AC 114 ms
54,028 KB
testcase_09 AC 123 ms
54,280 KB
testcase_10 AC 125 ms
54,060 KB
testcase_11 AC 159 ms
54,276 KB
testcase_12 AC 242 ms
54,604 KB
testcase_13 AC 225 ms
54,404 KB
testcase_14 AC 119 ms
54,528 KB
testcase_15 AC 112 ms
54,536 KB
testcase_16 AC 132 ms
53,884 KB
testcase_17 AC 116 ms
53,896 KB
testcase_18 AC 113 ms
53,984 KB
testcase_19 AC 120 ms
54,404 KB
testcase_20 AC 118 ms
54,360 KB
testcase_21 AC 130 ms
54,404 KB
testcase_22 AC 118 ms
54,148 KB
testcase_23 AC 113 ms
54,308 KB
testcase_24 AC 133 ms
54,112 KB
testcase_25 AC 138 ms
54,180 KB
testcase_26 AC 152 ms
54,184 KB
testcase_27 AC 114 ms
54,020 KB
testcase_28 AC 150 ms
54,020 KB
testcase_29 AC 117 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No36 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		int c = 0;
		for(long i = 2; i < Math.sqrt(n); i++) {
			while(n % i == 0) {
				n /= i;
				c++;
			}
		}
		if(n != 1) c++;
		if(c > 2) System.out.println("YES");
		else System.out.println("NO");
		
    }
}
0