結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 AC 121 ms
108,076 KB
testcase_03 AC 112 ms
61,164 KB
testcase_04 AC 123 ms
108,180 KB
testcase_05 AC 106 ms
106,280 KB
testcase_06 AC 120 ms
108,712 KB
testcase_07 AC 109 ms
107,148 KB
testcase_08 AC 117 ms
108,084 KB
testcase_09 AC 106 ms
106,476 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 224 ms
54,084 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 106 ms
52,932 KB
testcase_17 AC 101 ms
52,672 KB
testcase_18 AC 100 ms
52,588 KB
testcase_19 TLE -
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
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++;
				num_prime(n/i);
				return;
			}
		}
	}
}
0