結果

問題 No.36 素数が嫌い!
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-14 18:14:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 709 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-04 14:29:20
合計ジャッジ時間 25,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 121 ms
41,388 KB
testcase_03 AC 107 ms
40,396 KB
testcase_04 AC 124 ms
41,200 KB
testcase_05 AC 4,557 ms
41,348 KB
testcase_06 AC 4,309 ms
40,524 KB
testcase_07 AC 3,474 ms
41,360 KB
testcase_08 AC 888 ms
41,524 KB
testcase_09 AC 3,667 ms
41,376 KB
testcase_10 AC 2,556 ms
41,416 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 123 ms
41,360 KB
testcase_16 AC 121 ms
41,264 KB
testcase_17 AC 112 ms
41,336 KB
testcase_18 AC 223 ms
40,212 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int count =0;
        if(n==1||n==2||n==3){
            System.out.println("NO");
        }else{
            for(int i=2; i<n; i++){
                if(n%i==0){
                    for(int j=2; j<i; j++){
                        if(i%j==0){
                            count++;
                        }
                    }
                }
            }
            if(count>0){
                System.out.println("YES");
            }else{
                System.out.println("NO");
            }
        }
    }
}
0