結果

問題 No.36 素数が嫌い!
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-30 00:42:36
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 549 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 82,564 KB
最終ジャッジ日時 2024-11-19 10:04:28
合計ジャッジ時間 113,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 132 ms
81,948 KB
testcase_03 AC 136 ms
82,064 KB
testcase_04 AC 133 ms
46,792 KB
testcase_05 AC 136 ms
82,564 KB
testcase_06 AC 135 ms
82,024 KB
testcase_07 AC 132 ms
81,964 KB
testcase_08 AC 135 ms
81,944 KB
testcase_09 AC 135 ms
82,304 KB
testcase_10 AC 135 ms
81,944 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 134 ms
82,280 KB
testcase_16 AC 135 ms
81,868 KB
testcase_17 AC 131 ms
54,204 KB
testcase_18 AC 134 ms
41,360 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

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