結果

問題 No.36 素数が嫌い!
ユーザー tsunabittsunabit
提出日時 2019-09-05 10:37:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-10 22:45:56
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,480 KB
testcase_01 AC 117 ms
41,528 KB
testcase_02 AC 105 ms
41,360 KB
testcase_03 AC 117 ms
41,368 KB
testcase_04 AC 125 ms
41,244 KB
testcase_05 AC 117 ms
41,688 KB
testcase_06 AC 117 ms
41,560 KB
testcase_07 AC 119 ms
41,536 KB
testcase_08 AC 119 ms
41,168 KB
testcase_09 AC 107 ms
41,144 KB
testcase_10 AC 118 ms
41,412 KB
testcase_11 AC 153 ms
41,608 KB
testcase_12 AC 211 ms
40,128 KB
testcase_13 AC 224 ms
41,444 KB
testcase_14 AC 116 ms
41,640 KB
testcase_15 AC 114 ms
41,268 KB
testcase_16 AC 117 ms
41,188 KB
testcase_17 AC 118 ms
41,292 KB
testcase_18 AC 104 ms
41,216 KB
testcase_19 AC 128 ms
41,340 KB
testcase_20 AC 121 ms
40,996 KB
testcase_21 AC 121 ms
41,736 KB
testcase_22 AC 111 ms
41,424 KB
testcase_23 AC 115 ms
41,452 KB
testcase_24 AC 136 ms
41,432 KB
testcase_25 AC 139 ms
40,152 KB
testcase_26 AC 155 ms
41,372 KB
testcase_27 AC 126 ms
40,328 KB
testcase_28 AC 155 ms
41,788 KB
testcase_29 AC 122 ms
41,140 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