結果
問題 | No.36 素数が嫌い! |
ユーザー | rn4ru |
提出日時 | 2016-04-13 03:50:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 734 bytes |
コンパイル時間 | 1,758 ms |
コンパイル使用メモリ | 74,456 KB |
実行使用メモリ | 58,476 KB |
最終ジャッジ日時 | 2024-10-04 06:52:43 |
合計ジャッジ時間 | 7,079 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
53,872 KB |
testcase_01 | AC | 95 ms
52,528 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 153 ms
56,832 KB |
testcase_08 | AC | 117 ms
54,108 KB |
testcase_09 | AC | 114 ms
53,816 KB |
testcase_10 | AC | 97 ms
52,916 KB |
testcase_11 | AC | 320 ms
58,168 KB |
testcase_12 | AC | 536 ms
58,284 KB |
testcase_13 | WA | - |
testcase_14 | AC | 145 ms
56,820 KB |
testcase_15 | AC | 115 ms
54,088 KB |
testcase_16 | AC | 95 ms
52,904 KB |
testcase_17 | AC | 101 ms
52,624 KB |
testcase_18 | AC | 96 ms
52,964 KB |
testcase_19 | AC | 108 ms
54,084 KB |
testcase_20 | AC | 110 ms
54,080 KB |
testcase_21 | AC | 107 ms
53,692 KB |
testcase_22 | AC | 91 ms
52,280 KB |
testcase_23 | AC | 107 ms
53,852 KB |
testcase_24 | AC | 106 ms
53,872 KB |
testcase_25 | AC | 108 ms
53,888 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); BigInteger N = new BigInteger(scanner.next()); if (isPrime(N)) { System.out.println("NO"); } else { System.out.println("YES"); } } private static boolean isPrime(BigInteger n) { if (n.equals(BigInteger.ONE)) { return true; } BigInteger two = new BigInteger("2"); if (n.mod(two).equals(BigInteger.ZERO)) { return false; } BigInteger three = new BigInteger("3"); for (BigInteger i = three; i.multiply(i).compareTo(n) < 1; i = i.add(two)) { if (n.mod(i).equals(BigInteger.ZERO)) { return false; } } return true; } }