結果

問題 No.36 素数が嫌い!
ユーザー shinshin
提出日時 2022-05-18 09:35:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 1,104 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 78,660 KB
実行使用メモリ 38,124 KB
最終ジャッジ日時 2024-09-16 10:16:27
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
37,996 KB
testcase_01 AC 64 ms
37,268 KB
testcase_02 AC 51 ms
36,888 KB
testcase_03 AC 52 ms
36,832 KB
testcase_04 AC 52 ms
36,912 KB
testcase_05 AC 53 ms
36,764 KB
testcase_06 AC 54 ms
36,864 KB
testcase_07 AC 54 ms
36,528 KB
testcase_08 AC 52 ms
36,684 KB
testcase_09 AC 53 ms
36,700 KB
testcase_10 AC 53 ms
36,888 KB
testcase_11 AC 101 ms
37,812 KB
testcase_12 AC 169 ms
38,124 KB
testcase_13 AC 171 ms
37,824 KB
testcase_14 AC 57 ms
37,016 KB
testcase_15 AC 53 ms
36,836 KB
testcase_16 AC 53 ms
36,892 KB
testcase_17 AC 52 ms
36,692 KB
testcase_18 AC 52 ms
36,900 KB
testcase_19 AC 72 ms
37,948 KB
testcase_20 AC 70 ms
37,944 KB
testcase_21 AC 83 ms
38,028 KB
testcase_22 AC 63 ms
37,116 KB
testcase_23 AC 56 ms
37,048 KB
testcase_24 AC 83 ms
38,032 KB
testcase_25 AC 85 ms
37,840 KB
testcase_26 AC 101 ms
37,688 KB
testcase_27 AC 64 ms
37,320 KB
testcase_28 AC 101 ms
37,848 KB
testcase_29 AC 58 ms
36,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.TreeSet;

public class No36 {
	
	static TreeSet<Long> ts = new TreeSet<>();
	static TreeSet<Long> prime = new TreeSet<>();

	public static void main(String[] args) throws IOException{
		//素数が嫌い!
		long N = Long.parseLong(readStr()[0]);
		
		ts.add(1l);
		wari(N);
		
		System.out.println(ts.size() > prime.size() + 2 ? "YES" : "NO");

	}
	
	public static void wari(long a) {
		int sq = (int)Math.sqrt(a);
		ts.add(a);
		for(int i = 2;i <= Math.max(sq, 3);i++) {
			if(a % i == 0) {
				ts.add((long)i);
				prime.add((long)i);
				ts.add(a / i);
				wari(a / i);
				break;
			}
			if(i == sq) prime.add(a);
		}
	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0