結果

問題 No.36 素数が嫌い!
ユーザー htensaihtensai
提出日時 2019-12-18 09:05:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 73,492 KB
実行使用メモリ 38,228 KB
最終ジャッジ日時 2024-07-05 20:40:37
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,832 KB
testcase_01 AC 62 ms
37,096 KB
testcase_02 AC 52 ms
36,716 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 54 ms
36,716 KB
testcase_08 AC 53 ms
36,700 KB
testcase_09 AC 54 ms
36,304 KB
testcase_10 AC 52 ms
36,540 KB
testcase_11 AC 101 ms
37,580 KB
testcase_12 AC 179 ms
37,524 KB
testcase_13 WA -
testcase_14 AC 56 ms
36,956 KB
testcase_15 AC 55 ms
36,560 KB
testcase_16 AC 54 ms
36,848 KB
testcase_17 AC 55 ms
36,508 KB
testcase_18 AC 53 ms
36,940 KB
testcase_19 AC 53 ms
36,276 KB
testcase_20 AC 79 ms
37,296 KB
testcase_21 AC 53 ms
36,716 KB
testcase_22 AC 53 ms
36,836 KB
testcase_23 AC 52 ms
36,304 KB
testcase_24 AC 78 ms
37,460 KB
testcase_25 AC 52 ms
36,556 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (x != 1 && x != n) {
            count++;
        }
        if (count >= 2) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0