結果

問題 No.36 素数が嫌い!
ユーザー htensaihtensai
提出日時 2019-12-18 09:08:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 37,696 KB
最終ジャッジ日時 2024-07-05 20:43:59
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,876 KB
testcase_01 AC 58 ms
37,160 KB
testcase_02 AC 50 ms
36,760 KB
testcase_03 AC 49 ms
36,764 KB
testcase_04 WA -
testcase_05 AC 51 ms
36,792 KB
testcase_06 AC 53 ms
36,812 KB
testcase_07 AC 51 ms
36,820 KB
testcase_08 AC 50 ms
36,836 KB
testcase_09 AC 49 ms
36,536 KB
testcase_10 AC 49 ms
37,044 KB
testcase_11 AC 96 ms
37,408 KB
testcase_12 AC 169 ms
37,628 KB
testcase_13 WA -
testcase_14 AC 51 ms
36,800 KB
testcase_15 AC 51 ms
36,548 KB
testcase_16 AC 50 ms
36,868 KB
testcase_17 AC 49 ms
36,636 KB
testcase_18 AC 49 ms
36,848 KB
testcase_19 AC 50 ms
36,932 KB
testcase_20 AC 63 ms
37,664 KB
testcase_21 AC 49 ms
36,680 KB
testcase_22 AC 52 ms
36,824 KB
testcase_23 AC 50 ms
36,812 KB
testcase_24 AC 75 ms
37,516 KB
testcase_25 AC 50 ms
36,856 KB
testcase_26 AC 105 ms
37,696 KB
testcase_27 AC 59 ms
36,784 KB
testcase_28 AC 100 ms
37,536 KB
testcase_29 AC 53 ms
36,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        long n = Long.parseLong(br.readLine());
        long x = n;
        int count = 0;
        for (long i = 2; i <= Math.sqrt(x) && count < 2; i++) {
            while(x % i == 0) {
                count++;
                x /= i;
            }
        }
        if (count >= 2) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0