結果

問題 No.36 素数が嫌い!
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-24 23:55:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-10-14 14:54:12
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,024 KB
testcase_01 AC 110 ms
40,156 KB
testcase_02 AC 118 ms
41,108 KB
testcase_03 AC 119 ms
41,364 KB
testcase_04 AC 117 ms
41,080 KB
testcase_05 AC 116 ms
41,132 KB
testcase_06 AC 116 ms
41,052 KB
testcase_07 AC 107 ms
40,180 KB
testcase_08 AC 124 ms
41,060 KB
testcase_09 AC 105 ms
40,176 KB
testcase_10 AC 118 ms
41,204 KB
testcase_11 AC 142 ms
40,160 KB
testcase_12 AC 215 ms
40,100 KB
testcase_13 AC 226 ms
41,088 KB
testcase_14 AC 125 ms
41,420 KB
testcase_15 AC 122 ms
41,216 KB
testcase_16 AC 110 ms
40,464 KB
testcase_17 AC 118 ms
41,304 KB
testcase_18 AC 119 ms
41,252 KB
testcase_19 AC 117 ms
41,284 KB
testcase_20 AC 133 ms
41,368 KB
testcase_21 AC 112 ms
41,056 KB
testcase_22 AC 120 ms
41,256 KB
testcase_23 AC 115 ms
41,056 KB
testcase_24 AC 132 ms
41,324 KB
testcase_25 AC 118 ms
41,132 KB
testcase_26 AC 155 ms
41,340 KB
testcase_27 AC 128 ms
41,276 KB
testcase_28 AC 157 ms
41,216 KB
testcase_29 AC 121 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    long p = 0;
    long s = 0;
    long t = 0;
    for(long i = 2; (i * i) <= n; i++) {
      if((n % i) == 0) {
        p += 2;
        s = i;
        t = n / i;
        break;
      }
    }
    for(long i = 2; (i * i) <= s; i++) {
      if((s % i) == 0) {
        p += 2;
        break;
      }
    }
    for(long i = 2; (i * i) <= t; i++) {
      if((t % i) == 0) {
        p += 2;
        break;
      }
    }
    String ans = "NO";
    if(p >= 3) ans = "YES";
    System.out.println(ans);
  }
}
0