結果

問題 No.36 素数が嫌い!
ユーザー nCk_cvnCk_cv
提出日時 2016-02-05 13:28:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-09-21 20:36:10
合計ジャッジ時間 8,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 225 ms
41,292 KB
testcase_02 AC 132 ms
41,664 KB
testcase_03 AC 130 ms
41,240 KB
testcase_04 AC 131 ms
40,892 KB
testcase_05 AC 133 ms
41,500 KB
testcase_06 AC 131 ms
41,240 KB
testcase_07 AC 132 ms
41,452 KB
testcase_08 AC 133 ms
41,720 KB
testcase_09 AC 135 ms
41,524 KB
testcase_10 WA -
testcase_11 AC 174 ms
41,460 KB
testcase_12 AC 254 ms
41,176 KB
testcase_13 AC 246 ms
41,596 KB
testcase_14 AC 206 ms
41,184 KB
testcase_15 AC 132 ms
41,116 KB
testcase_16 AC 131 ms
41,152 KB
testcase_17 AC 129 ms
41,392 KB
testcase_18 AC 134 ms
41,452 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 201 ms
41,520 KB
testcase_25 WA -
testcase_26 AC 205 ms
41,040 KB
testcase_27 AC 234 ms
41,256 KB
testcase_28 AC 203 ms
41,464 KB
testcase_29 AC 243 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		ArrayList<Integer> list = new ArrayList<Integer>();
		long tmp = (long)Math.sqrt(n);
		for(int i = 2; i <= tmp; i++) {
			while(n % i == 0) {
				list.add(i);
				n /= i;
			}
		}
		if(list.size() > 2) System.out.println("YES");
		else System.out.println("NO");
	}
}
0