結果

問題 No.36 素数が嫌い!
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 19:46:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 42,760 KB
最終ジャッジ日時 2024-11-21 21:23:08
合計ジャッジ時間 8,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
41,520 KB
testcase_01 AC 203 ms
41,608 KB
testcase_02 AC 123 ms
41,372 KB
testcase_03 AC 120 ms
41,592 KB
testcase_04 AC 114 ms
41,176 KB
testcase_05 AC 121 ms
41,476 KB
testcase_06 AC 112 ms
41,428 KB
testcase_07 AC 122 ms
41,180 KB
testcase_08 AC 120 ms
40,284 KB
testcase_09 AC 111 ms
40,148 KB
testcase_10 AC 121 ms
41,620 KB
testcase_11 AC 156 ms
41,556 KB
testcase_12 AC 238 ms
41,400 KB
testcase_13 AC 225 ms
41,352 KB
testcase_14 WA -
testcase_15 AC 126 ms
41,256 KB
testcase_16 AC 124 ms
41,184 KB
testcase_17 AC 125 ms
41,484 KB
testcase_18 AC 107 ms
41,368 KB
testcase_19 AC 171 ms
40,076 KB
testcase_20 AC 227 ms
41,480 KB
testcase_21 AC 211 ms
41,740 KB
testcase_22 AC 213 ms
41,360 KB
testcase_23 AC 180 ms
41,632 KB
testcase_24 AC 184 ms
41,492 KB
testcase_25 AC 186 ms
41,284 KB
testcase_26 AC 194 ms
41,348 KB
testcase_27 AC 221 ms
41,404 KB
testcase_28 AC 193 ms
41,524 KB
testcase_29 AC 235 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    int count = 0;
    for(long i = 2; i * i <= n; i++) {
      if(n % i == 0) count++;
    }
    String ans = "NO";
    if(count > 1) ans = "YES";
    System.out.println(ans);
  }
}
0