結果

問題 No.36 素数が嫌い!
ユーザー kano_townkano_town
提出日時 2014-12-12 14:51:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-06-11 21:00:40
合計ジャッジ時間 9,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
41,428 KB
testcase_01 AC 226 ms
41,344 KB
testcase_02 AC 132 ms
41,596 KB
testcase_03 AC 133 ms
41,576 KB
testcase_04 AC 132 ms
41,304 KB
testcase_05 AC 135 ms
41,236 KB
testcase_06 AC 135 ms
41,464 KB
testcase_07 AC 136 ms
41,196 KB
testcase_08 AC 134 ms
41,304 KB
testcase_09 AC 132 ms
41,288 KB
testcase_10 AC 135 ms
41,056 KB
testcase_11 AC 172 ms
41,292 KB
testcase_12 AC 249 ms
41,336 KB
testcase_13 AC 249 ms
41,432 KB
testcase_14 WA -
testcase_15 AC 132 ms
41,140 KB
testcase_16 AC 131 ms
41,236 KB
testcase_17 AC 131 ms
41,684 KB
testcase_18 AC 133 ms
41,648 KB
testcase_19 AC 179 ms
41,580 KB
testcase_20 AC 237 ms
41,300 KB
testcase_21 AC 220 ms
41,836 KB
testcase_22 AC 225 ms
41,376 KB
testcase_23 AC 189 ms
41,588 KB
testcase_24 AC 196 ms
41,304 KB
testcase_25 AC 193 ms
41,380 KB
testcase_26 AC 190 ms
41,508 KB
testcase_27 AC 233 ms
41,560 KB
testcase_28 AC 201 ms
41,300 KB
testcase_29 AC 243 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder36 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong(), cnt = 0;
		for (long i = 2; i < Math.sqrt(n); i++) if (n % i == 0) cnt++;
		if (cnt > 1) System.out.println("YES");
		else System.out.println("NO");
	}
}
0