結果

問題 No.36 素数が嫌い!
ユーザー kano_townkano_town
提出日時 2014-12-12 15:00:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-06-27 00:14:39
合計ジャッジ時間 10,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
40,148 KB
testcase_01 AC 288 ms
40,408 KB
testcase_02 AC 126 ms
41,680 KB
testcase_03 AC 128 ms
41,404 KB
testcase_04 AC 124 ms
41,408 KB
testcase_05 AC 127 ms
41,412 KB
testcase_06 AC 126 ms
41,308 KB
testcase_07 AC 123 ms
41,904 KB
testcase_08 AC 115 ms
41,148 KB
testcase_09 AC 124 ms
41,140 KB
testcase_10 AC 130 ms
41,316 KB
testcase_11 AC 195 ms
41,284 KB
testcase_12 AC 336 ms
41,444 KB
testcase_13 AC 330 ms
41,176 KB
testcase_14 AC 263 ms
41,572 KB
testcase_15 AC 128 ms
41,444 KB
testcase_16 AC 124 ms
41,280 KB
testcase_17 AC 122 ms
41,424 KB
testcase_18 AC 121 ms
41,444 KB
testcase_19 AC 208 ms
41,160 KB
testcase_20 AC 338 ms
41,520 KB
testcase_21 AC 284 ms
41,104 KB
testcase_22 AC 291 ms
41,520 KB
testcase_23 AC 224 ms
41,300 KB
testcase_24 AC 238 ms
41,524 KB
testcase_25 AC 221 ms
40,288 KB
testcase_26 AC 250 ms
41,688 KB
testcase_27 AC 305 ms
41,668 KB
testcase_28 AC 251 ms
41,436 KB
testcase_29 AC 328 ms
41,332 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 (n % (i * i) == 0) cnt++;
		}
		if (cnt > 1) System.out.println("YES");
		else System.out.println("NO");
	}
}
0