結果

問題 No.36 素数が嫌い!
ユーザー spaciaspacia
提出日時 2016-01-12 23:09:24
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 767 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 101,940 KB
最終ジャッジ日時 2024-11-15 18:28:42
合計ジャッジ時間 29,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
56,884 KB
testcase_01 AC 56 ms
101,940 KB
testcase_02 AC 54 ms
101,204 KB
testcase_03 AC 53 ms
56,832 KB
testcase_04 AC 54 ms
50,440 KB
testcase_05 AC 55 ms
50,504 KB
testcase_06 AC 54 ms
50,004 KB
testcase_07 AC 56 ms
50,140 KB
testcase_08 AC 54 ms
49,900 KB
testcase_09 AC 53 ms
49,924 KB
testcase_10 AC 56 ms
50,076 KB
testcase_11 AC 100 ms
50,664 KB
testcase_12 AC 179 ms
50,792 KB
testcase_13 AC 174 ms
50,732 KB
testcase_14 AC 55 ms
50,248 KB
testcase_15 AC 53 ms
50,136 KB
testcase_16 AC 55 ms
50,168 KB
testcase_17 AC 54 ms
49,972 KB
testcase_18 AC 55 ms
49,760 KB
testcase_19 AC 54 ms
50,076 KB
testcase_20 AC 60 ms
50,276 KB
testcase_21 AC 54 ms
50,196 KB
testcase_22 AC 54 ms
50,172 KB
testcase_23 AC 54 ms
50,404 KB
testcase_24 AC 71 ms
50,888 KB
testcase_25 AC 54 ms
50,268 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 (long i = 2; i * i <= n; i++) {
			//if (i % 1000000 == 0) out(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