結果

問題 No.36 素数が嫌い!
ユーザー hhgfhn1
提出日時 2018-10-30 00:42:36
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 549 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 82,564 KB
最終ジャッジ日時 2024-11-19 10:04:28
合計ジャッジ時間 113,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 9 TLE * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		long n = scanner.nextLong();
		num_prime(n);
		if (res >= 3) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}

	static int res = 0;

	private static void num_prime(long n) {
		for (int i = 2; i * i <= n; i++) {
			if (n % i == 0) {
				res++;
				if (n / i % i == 0) {
					res++;
					if (n / i / i % i == 0) {
						res++;
					}
				}
			}
		}
	}
}
0