結果

問題 No.36 素数が嫌い!
ユーザー shinshin
提出日時 2022-05-18 08:44:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 953 bytes
コンパイル時間 4,945 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 38,080 KB
最終ジャッジ日時 2024-09-16 09:18:39
合計ジャッジ時間 6,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
37,808 KB
testcase_01 AC 58 ms
36,916 KB
testcase_02 AC 52 ms
36,948 KB
testcase_03 WA -
testcase_04 AC 52 ms
37,112 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 52 ms
37,032 KB
testcase_08 AC 51 ms
37,056 KB
testcase_09 AC 52 ms
36,680 KB
testcase_10 AC 52 ms
36,676 KB
testcase_11 AC 96 ms
37,552 KB
testcase_12 AC 167 ms
37,592 KB
testcase_13 AC 167 ms
37,804 KB
testcase_14 AC 54 ms
36,876 KB
testcase_15 AC 52 ms
36,684 KB
testcase_16 AC 51 ms
36,552 KB
testcase_17 AC 52 ms
36,672 KB
testcase_18 AC 51 ms
36,560 KB
testcase_19 AC 65 ms
37,928 KB
testcase_20 AC 64 ms
37,264 KB
testcase_21 AC 75 ms
37,836 KB
testcase_22 AC 55 ms
37,128 KB
testcase_23 AC 53 ms
36,700 KB
testcase_24 AC 77 ms
37,936 KB
testcase_25 AC 80 ms
38,080 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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<Integer> ts = new TreeSet<>();

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

	}
	
	public static void wari(long a) {
		int sq = (int)Math.sqrt(a);
		for(int i = 2;i <= sq;i++) {
			if(a % i == 0) {
				ts.add(i);
				ts.add((int)(a / i));
				wari(a / i);
				break;
			}
		}
	}
	
	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