結果

問題 No.36 素数が嫌い!
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 21:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 507 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 6,851 ms
コンパイル使用メモリ 78,644 KB
実行使用メモリ 94,008 KB
最終ジャッジ日時 2024-06-27 01:03:51
合計ジャッジ時間 15,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
60,128 KB
testcase_01 AC 411 ms
72,464 KB
testcase_02 AC 136 ms
41,232 KB
testcase_03 AC 138 ms
41,212 KB
testcase_04 AC 142 ms
41,020 KB
testcase_05 AC 142 ms
41,812 KB
testcase_06 AC 149 ms
41,480 KB
testcase_07 AC 144 ms
41,720 KB
testcase_08 AC 138 ms
41,464 KB
testcase_09 AC 145 ms
41,608 KB
testcase_10 AC 142 ms
41,316 KB
testcase_11 AC 237 ms
54,672 KB
testcase_12 AC 489 ms
80,796 KB
testcase_13 AC 483 ms
80,884 KB
testcase_14 AC 356 ms
66,720 KB
testcase_15 AC 136 ms
41,100 KB
testcase_16 AC 137 ms
41,488 KB
testcase_17 AC 136 ms
41,356 KB
testcase_18 AC 140 ms
41,932 KB
testcase_19 AC 251 ms
57,668 KB
testcase_20 AC 507 ms
80,656 KB
testcase_21 AC 413 ms
72,140 KB
testcase_22 AC 430 ms
72,872 KB
testcase_23 AC 368 ms
60,816 KB
testcase_24 AC 303 ms
77,540 KB
testcase_25 AC 289 ms
75,460 KB
testcase_26 AC 320 ms
79,348 KB
testcase_27 AC 404 ms
89,808 KB
testcase_28 AC 324 ms
79,440 KB
testcase_29 AC 454 ms
94,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;
public class Primehate {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s= new Scanner(System.in);
		long N = s.nextLong();
		s.close();
		int n = (int)Math.sqrt(N);
		int[] p = new int[n+1];
		TreeSet<Integer> prime = new TreeSet<>();
		long check = N;
		for(int i = 2;i <= n;i++){
			if(p[i] == 0){
				for(int j = 2;i*j <= n;j++){
					p[i*j] = 1;
				}
				if(N % i == 0){
					prime.add(i);
					check = N/i;
				}
			}
		}
		if(check == N){
			System.out.println("NO");
		}else{
			boolean tof = true;
			for(int i:prime){
				if(check % i == 0 && check != i){
					System.out.println("YES");
					tof = false;
					break;
				}
			}
			if(tof){
				System.out.println("NO");
			}
		}
		

	}

}
0