結果
問題 | No.36 素数が嫌い! |
ユーザー | mobius_bkst |
提出日時 | 2015-05-03 15:33:59 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,009 bytes |
コンパイル時間 | 3,056 ms |
コンパイル使用メモリ | 75,152 KB |
実行使用メモリ | 42,380 KB |
最終ジャッジ日時 | 2024-07-05 17:38:51 |
合計ジャッジ時間 | 9,756 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
36,792 KB |
testcase_01 | AC | 42 ms
36,748 KB |
testcase_02 | AC | 42 ms
36,724 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 41 ms
36,848 KB |
testcase_08 | AC | 41 ms
36,564 KB |
testcase_09 | AC | 41 ms
36,772 KB |
testcase_10 | AC | 42 ms
36,848 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class No036 { public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader( System.in)); long N = Long.parseLong(br.readLine()); if (N == 1 || isPrime(N)) { System.out.println("NO"); } else { System.out.println("YES"); } } catch (Exception e) { System.err.println("Error:" + e.getMessage()); } } // エラトステネスの篩 // 素数とかわかる static boolean isPrime(long n) { if (n < 2) { return false; } else if (n == 2) { return true; } if (n % 2 == 0) { return false; } for (int i = 3; i * i <= n; i += 2) { if (n % i == 0) { return false; } } return true; } }