結果

問題 No.36 素数が嫌い!
ユーザー rf141rf141
提出日時 2015-08-06 00:25:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-07-18 03:34:40
合計ジャッジ時間 8,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 203 ms
41,024 KB
testcase_02 AC 107 ms
41,228 KB
testcase_03 AC 126 ms
41,344 KB
testcase_04 AC 114 ms
41,252 KB
testcase_05 AC 105 ms
41,288 KB
testcase_06 AC 108 ms
41,056 KB
testcase_07 AC 118 ms
41,100 KB
testcase_08 AC 122 ms
41,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 151 ms
40,984 KB
testcase_12 AC 221 ms
40,840 KB
testcase_13 AC 224 ms
40,860 KB
testcase_14 WA -
testcase_15 AC 115 ms
41,444 KB
testcase_16 AC 122 ms
40,796 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 162 ms
41,160 KB
testcase_25 WA -
testcase_26 AC 185 ms
39,972 KB
testcase_27 AC 211 ms
40,956 KB
testcase_28 AC 180 ms
40,880 KB
testcase_29 AC 205 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class hate{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		System.out.println(judge(n));
	}
	public static String judge(long n){
		long N = n;
		for(long i = 2; i < Math.sqrt(n); i++){
			if(N%i==0){
				N /= i;
			}
		}
		if(N>1)return "NO";
		return "YES";
	}
}
0