結果

問題 No.36 素数が嫌い!
ユーザー shinshin
提出日時 2022-05-18 09:55:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 864 bytes
コンパイル時間 4,588 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 51,212 KB
最終ジャッジ日時 2024-09-16 10:41:54
合計ジャッジ時間 6,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 50 ms
36,380 KB
testcase_03 AC 49 ms
36,580 KB
testcase_04 AC 49 ms
36,840 KB
testcase_05 AC 50 ms
36,660 KB
testcase_06 AC 49 ms
36,972 KB
testcase_07 AC 50 ms
36,868 KB
testcase_08 AC 48 ms
36,988 KB
testcase_09 AC 50 ms
36,776 KB
testcase_10 WA -
testcase_11 AC 81 ms
37,628 KB
testcase_12 AC 124 ms
37,956 KB
testcase_13 AC 129 ms
37,792 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 50 ms
36,656 KB
testcase_17 AC 49 ms
36,628 KB
testcase_18 AC 49 ms
36,464 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 83 ms
37,668 KB
testcase_27 AC 54 ms
36,448 KB
testcase_28 AC 81 ms
37,692 KB
testcase_29 AC 51 ms
37,016 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;
		
		do {
			if(N % i == 0) {
				res++;
				N /= i;
			}else {
				i += 2;
			}
		}while(i <= Math.sqrt(N));
		
		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