結果

問題 No.36 素数が嫌い!
ユーザー tentententen
提出日時 2022-07-28 17:14:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 1,465 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 38,108 KB
最終ジャッジ日時 2024-07-18 07:58:25
合計ジャッジ時間 4,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,660 KB
testcase_01 AC 51 ms
37,332 KB
testcase_02 AC 44 ms
37,228 KB
testcase_03 AC 44 ms
37,024 KB
testcase_04 AC 44 ms
37,216 KB
testcase_05 AC 46 ms
37,160 KB
testcase_06 AC 45 ms
36,920 KB
testcase_07 AC 46 ms
37,060 KB
testcase_08 AC 44 ms
37,176 KB
testcase_09 AC 44 ms
37,036 KB
testcase_10 AC 45 ms
37,224 KB
testcase_11 AC 86 ms
37,804 KB
testcase_12 AC 162 ms
37,952 KB
testcase_13 AC 159 ms
38,000 KB
testcase_14 AC 49 ms
37,216 KB
testcase_15 AC 44 ms
37,264 KB
testcase_16 AC 45 ms
37,188 KB
testcase_17 AC 45 ms
37,200 KB
testcase_18 AC 45 ms
37,280 KB
testcase_19 AC 46 ms
37,224 KB
testcase_20 AC 55 ms
37,468 KB
testcase_21 AC 43 ms
37,320 KB
testcase_22 AC 44 ms
36,964 KB
testcase_23 AC 44 ms
37,116 KB
testcase_24 AC 68 ms
37,952 KB
testcase_25 AC 44 ms
36,884 KB
testcase_26 AC 156 ms
37,924 KB
testcase_27 AC 145 ms
38,108 KB
testcase_28 AC 151 ms
37,928 KB
testcase_29 AC 151 ms
37,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        if (canUse(sc.nextLong())) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    static boolean canUse(long x) {
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                if (!isPrime(i) || !isPrime(x / i)) {
                    return true;
                }
            }
        }
        return false;
    }
    static boolean isPrime(long x) {
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return true;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0