結果

問題 No.36 素数が嫌い!
ユーザー koba-e964koba-e964
提出日時 2015-05-13 13:20:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-07-06 01:23:23
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,120 KB
testcase_01 AC 170 ms
54,008 KB
testcase_02 AC 136 ms
54,112 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 143 ms
54,272 KB
testcase_08 AC 136 ms
53,868 KB
testcase_09 AC 135 ms
54,032 KB
testcase_10 AC 135 ms
54,088 KB
testcase_11 AC 147 ms
54,000 KB
testcase_12 AC 143 ms
54,156 KB
testcase_13 WA -
testcase_14 AC 135 ms
54,208 KB
testcase_15 AC 134 ms
53,968 KB
testcase_16 AC 138 ms
54,040 KB
testcase_17 AC 133 ms
54,248 KB
testcase_18 AC 136 ms
54,520 KB
testcase_19 AC 137 ms
54,056 KB
testcase_20 AC 138 ms
53,992 KB
testcase_21 AC 133 ms
54,020 KB
testcase_22 AC 132 ms
54,136 KB
testcase_23 AC 134 ms
53,884 KB
testcase_24 AC 133 ms
54,092 KB
testcase_25 AC 132 ms
54,116 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
long i = sc.nextLong();
BigInteger bi = BigInteger.valueOf(i);
System.out.println((i == 1 || bi.isProbablePrime(20)) ? "NO" : "YES");
}}
0