結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,452 KB
testcase_01 WA -
testcase_02 AC 132 ms
41,184 KB
testcase_03 AC 133 ms
41,500 KB
testcase_04 AC 133 ms
41,312 KB
testcase_05 AC 142 ms
41,356 KB
testcase_06 AC 142 ms
41,440 KB
testcase_07 AC 137 ms
41,256 KB
testcase_08 WA -
testcase_09 AC 133 ms
41,376 KB
testcase_10 WA -
testcase_11 AC 173 ms
41,680 KB
testcase_12 AC 250 ms
41,420 KB
testcase_13 AC 249 ms
41,292 KB
testcase_14 AC 133 ms
41,356 KB
testcase_15 WA -
testcase_16 AC 132 ms
41,412 KB
testcase_17 AC 132 ms
41,516 KB
testcase_18 AC 132 ms
41,452 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 132 ms
41,672 KB
testcase_26 AC 205 ms
41,552 KB
testcase_27 AC 234 ms
41,564 KB
testcase_28 AC 205 ms
41,388 KB
testcase_29 AC 246 ms
41,492 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();
		for (long i = 2; i < Math.sqrt(n); i++) {
			if (n % (i * i) == 0) {
				System.out.println("YES");
				return;
			}
		}
		System.out.println("NO");
	}
}
0