結果

問題 No.36 素数が嫌い!
ユーザー jp_stejp_ste
提出日時 2016-03-01 21:51:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-06-27 00:42:09
合計ジャッジ時間 7,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,532 KB
testcase_01 AC 123 ms
40,388 KB
testcase_02 AC 127 ms
41,464 KB
testcase_03 AC 128 ms
41,540 KB
testcase_04 AC 129 ms
41,128 KB
testcase_05 AC 130 ms
41,412 KB
testcase_06 AC 130 ms
41,556 KB
testcase_07 AC 128 ms
41,424 KB
testcase_08 AC 107 ms
39,896 KB
testcase_09 AC 129 ms
41,256 KB
testcase_10 AC 128 ms
41,304 KB
testcase_11 AC 170 ms
41,552 KB
testcase_12 AC 228 ms
40,552 KB
testcase_13 AC 242 ms
41,656 KB
testcase_14 AC 128 ms
41,384 KB
testcase_15 AC 126 ms
41,636 KB
testcase_16 AC 126 ms
41,556 KB
testcase_17 AC 127 ms
41,436 KB
testcase_18 AC 130 ms
41,312 KB
testcase_19 AC 138 ms
41,560 KB
testcase_20 AC 135 ms
41,392 KB
testcase_21 AC 146 ms
41,036 KB
testcase_22 AC 132 ms
41,184 KB
testcase_23 AC 129 ms
41,128 KB
testcase_24 AC 150 ms
41,540 KB
testcase_25 AC 154 ms
41,396 KB
testcase_26 AC 167 ms
41,516 KB
testcase_27 AC 137 ms
41,592 KB
testcase_28 AC 172 ms
41,272 KB
testcase_29 AC 133 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            long N = scan.nextLong();
            
            int count = 0;
            for(int i=2; i<=Math.sqrt(N); i++) {
                while(N % i == 0) {
                    N /= i;
                    count++;
                }
            }
            if(N > 1) count++;
            
            if(count>=3) {
                System.out.println("YES");
            } else {
                System.out.println("NO");
            }
        }
    }
}
0