結果

問題 No.36 素数が嫌い!
ユーザー shinshin
提出日時 2022-05-18 10:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 993 bytes
コンパイル時間 4,348 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 38,392 KB
最終ジャッジ日時 2024-09-16 11:03:04
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,980 KB
testcase_01 AC 56 ms
36,816 KB
testcase_02 AC 50 ms
36,796 KB
testcase_03 AC 51 ms
36,948 KB
testcase_04 AC 52 ms
37,132 KB
testcase_05 AC 52 ms
37,124 KB
testcase_06 AC 52 ms
36,628 KB
testcase_07 AC 52 ms
36,964 KB
testcase_08 AC 52 ms
36,872 KB
testcase_09 AC 51 ms
36,576 KB
testcase_10 AC 51 ms
37,128 KB
testcase_11 AC 85 ms
38,392 KB
testcase_12 AC 120 ms
37,964 KB
testcase_13 AC 126 ms
38,204 KB
testcase_14 AC 53 ms
37,092 KB
testcase_15 AC 51 ms
36,644 KB
testcase_16 AC 51 ms
37,080 KB
testcase_17 AC 51 ms
36,704 KB
testcase_18 AC 51 ms
36,972 KB
testcase_19 AC 66 ms
37,568 KB
testcase_20 AC 62 ms
36,796 KB
testcase_21 AC 77 ms
38,236 KB
testcase_22 AC 56 ms
36,852 KB
testcase_23 AC 55 ms
36,976 KB
testcase_24 AC 73 ms
38,180 KB
testcase_25 AC 78 ms
38,224 KB
testcase_26 AC 92 ms
38,152 KB
testcase_27 AC 59 ms
36,956 KB
testcase_28 AC 85 ms
38,376 KB
testcase_29 AC 54 ms
37,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class No36_2 {
	
	static int res = 0;

	public static void main(String[] args) throws IOException{
		//素数が嫌い!
		long N = Long.parseLong(readStr()[0]);
		
		while(N % 2 == 0) {
			res++;
			N /= 2;
		}

		long i = 3l;
		
		if(res == 2 && N > 1) {
			res++;
		}else if(res < 3){
			
			while(i <= N) {
				if(N % i == 0) {
					res++;
					N /= i;
					if(i < N) res++;
				}else {
					i += 2;
					if(i != N && i >= (long)Math.sqrt(N)) break;
				}
			}
		}
		
		System.out.println(res > 2 ? "YES" : "NO");

	}
	

	
	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