結果

問題 No.36 素数が嫌い!
ユーザー ぴろずぴろず
提出日時 2014-12-16 21:36:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 56,568 KB
最終ジャッジ日時 2024-06-11 21:55:25
合計ジャッジ時間 7,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,452 KB
testcase_01 AC 128 ms
41,596 KB
testcase_02 AC 127 ms
41,596 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 135 ms
41,704 KB
testcase_08 AC 127 ms
41,512 KB
testcase_09 AC 129 ms
41,780 KB
testcase_10 AC 128 ms
41,452 KB
testcase_11 AC 135 ms
41,684 KB
testcase_12 AC 134 ms
41,848 KB
testcase_13 WA -
testcase_14 AC 128 ms
41,572 KB
testcase_15 AC 114 ms
41,576 KB
testcase_16 AC 128 ms
41,388 KB
testcase_17 AC 127 ms
41,392 KB
testcase_18 AC 126 ms
41,580 KB
testcase_19 AC 127 ms
41,420 KB
testcase_20 AC 131 ms
41,580 KB
testcase_21 AC 128 ms
41,328 KB
testcase_22 AC 131 ms
41,432 KB
testcase_23 AC 135 ms
41,576 KB
testcase_24 AC 130 ms
41,388 KB
testcase_25 AC 130 ms
41,480 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no036;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger bi = new BigInteger(sc.next());
		if (bi.intValue() == 1) {
			System.out.println("NO");
			return;
		}
		System.out.println(bi.isProbablePrime(30) ? "NO" : "YES");
	}

}
0