結果

問題 No.36 素数が嫌い!
ユーザー spaciaspacia
提出日時 2016-01-12 22:58:52
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 731 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 42,488 KB
最終ジャッジ日時 2024-09-19 18:53:29
合計ジャッジ時間 8,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,728 KB
testcase_01 AC 47 ms
37,052 KB
testcase_02 AC 46 ms
36,552 KB
testcase_03 AC 46 ms
36,832 KB
testcase_04 AC 46 ms
36,544 KB
testcase_05 AC 45 ms
36,760 KB
testcase_06 AC 44 ms
37,052 KB
testcase_07 AC 45 ms
36,836 KB
testcase_08 AC 46 ms
37,036 KB
testcase_09 AC 45 ms
36,968 KB
testcase_10 AC 45 ms
36,520 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean isPrime (long n) {
		if (n == 1 || (n != 2 && n % 2 == 0)) return false;
		for (int i = 3; i * i <= n; i += 2)
			if (n % i == 0) return false;
		return true;
	}
	
	public static boolean solve (long n) {
		if (n == 1) return false;
		for (int i = 2; i * i <= n; i++) {
			if (n % i != 0) continue;
			if (!isPrime(i) || !isPrime(n / i)) return true;
		}
		return false;
	}
	
	public static void main (String[] args) throws IOException {
		
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		out(solve(Long.parseLong(br.readLine())) ? "YES" : "NO");
	}
}
0