結果

問題 No.36 素数が嫌い!
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-30 00:48:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-11-19 10:05:00
合計ジャッジ時間 8,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
53,228 KB
testcase_01 AC 189 ms
54,328 KB
testcase_02 AC 105 ms
52,984 KB
testcase_03 AC 118 ms
54,008 KB
testcase_04 AC 120 ms
53,940 KB
testcase_05 AC 108 ms
53,064 KB
testcase_06 AC 111 ms
53,164 KB
testcase_07 AC 111 ms
52,936 KB
testcase_08 AC 116 ms
54,008 KB
testcase_09 AC 116 ms
54,100 KB
testcase_10 AC 100 ms
52,640 KB
testcase_11 AC 154 ms
54,296 KB
testcase_12 AC 223 ms
54,192 KB
testcase_13 AC 219 ms
53,932 KB
testcase_14 AC 186 ms
53,944 KB
testcase_15 AC 105 ms
53,060 KB
testcase_16 AC 111 ms
52,808 KB
testcase_17 AC 121 ms
53,852 KB
testcase_18 AC 115 ms
54,020 KB
testcase_19 AC 161 ms
54,352 KB
testcase_20 AC 219 ms
53,220 KB
testcase_21 AC 186 ms
52,852 KB
testcase_22 AC 206 ms
53,776 KB
testcase_23 AC 163 ms
53,268 KB
testcase_24 AC 180 ms
54,016 KB
testcase_25 AC 177 ms
53,976 KB
testcase_26 AC 180 ms
54,096 KB
testcase_27 AC 210 ms
54,104 KB
testcase_28 AC 182 ms
53,960 KB
testcase_29 AC 210 ms
53,192 KB
権限があれば一括ダウンロードができます

ソースコード

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 <= Math.sqrt(n); i++) {
			if (n % i == 0) {
				res++;
				if (n / i % i == 0) {
					res++;
					if (n / i / i % i == 0) {
						res++;
					}
				}
			}
		}
	}
}
0