結果

問題 No.36 素数が嫌い!
ユーザー GrenacheGrenache
提出日時 2015-11-03 15:51:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 896 bytes
コンパイル時間 3,793 ms
コンパイル使用メモリ 78,452 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-06-27 00:33:18
合計ジャッジ時間 10,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
41,720 KB
testcase_01 AC 246 ms
41,832 KB
testcase_02 AC 136 ms
41,272 KB
testcase_03 AC 142 ms
41,272 KB
testcase_04 AC 138 ms
41,720 KB
testcase_05 AC 137 ms
41,296 KB
testcase_06 AC 139 ms
41,260 KB
testcase_07 AC 138 ms
41,548 KB
testcase_08 AC 139 ms
41,108 KB
testcase_09 AC 136 ms
41,192 KB
testcase_10 AC 136 ms
41,416 KB
testcase_11 AC 177 ms
41,648 KB
testcase_12 AC 253 ms
41,892 KB
testcase_13 AC 254 ms
41,496 KB
testcase_14 AC 214 ms
41,412 KB
testcase_15 AC 138 ms
41,384 KB
testcase_16 AC 137 ms
41,288 KB
testcase_17 AC 138 ms
41,356 KB
testcase_18 AC 136 ms
41,456 KB
testcase_19 AC 187 ms
41,688 KB
testcase_20 AC 270 ms
41,556 KB
testcase_21 AC 228 ms
41,396 KB
testcase_22 AC 230 ms
41,380 KB
testcase_23 AC 200 ms
41,356 KB
testcase_24 AC 218 ms
41,448 KB
testcase_25 AC 203 ms
41,592 KB
testcase_26 AC 211 ms
41,396 KB
testcase_27 AC 239 ms
41,544 KB
testcase_28 AC 208 ms
41,820 KB
testcase_29 AC 251 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;


public class Main_yukicoder36 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n = sc.nextLong();

		Map<Long, Integer> hm = new HashMap<Long, Integer>();
		long tmp = n;
		for (long j = 2; j * j <= tmp; j++) {
			while (n % j == 0) {
				if (hm.containsKey(j)) {
					hm.put(j, hm.get(j) + 1);
				} else {
					hm.put(j, 1);
				}
				n /= j;
			}
		}
		if (n != 1) {
			if (hm.containsKey(n)) {
				hm.put(n, hm.get(n) + 1);
			} else {
				hm.put(n, 1);
			}
		}

		int max = 0;
		for (int e : hm.values()) {
			max = Math.max(max, e);
		}

		if (hm.size() == 1 && max == 2) {
			System.out.println("NO");
		} else if (max > 1 || hm.size() > 2) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
        
        sc.close();
    }
}
0