結果

問題 No.36 素数が嫌い!
ユーザー GrenacheGrenache
提出日時 2015-11-03 15:46:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 4,071 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 56,116 KB
最終ジャッジ日時 2024-09-13 12:08:53
合計ジャッジ時間 10,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
53,952 KB
testcase_01 AC 241 ms
54,332 KB
testcase_02 AC 132 ms
54,092 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
54,356 KB
testcase_08 AC 130 ms
54,056 KB
testcase_09 AC 135 ms
53,676 KB
testcase_10 AC 131 ms
54,096 KB
testcase_11 AC 172 ms
54,020 KB
testcase_12 AC 249 ms
54,012 KB
testcase_13 WA -
testcase_14 AC 208 ms
53,912 KB
testcase_15 AC 135 ms
54,192 KB
testcase_16 AC 133 ms
54,020 KB
testcase_17 AC 132 ms
54,300 KB
testcase_18 AC 135 ms
53,944 KB
testcase_19 AC 182 ms
53,836 KB
testcase_20 AC 265 ms
54,176 KB
testcase_21 AC 223 ms
53,932 KB
testcase_22 AC 227 ms
54,176 KB
testcase_23 AC 191 ms
53,984 KB
testcase_24 AC 213 ms
54,192 KB
testcase_25 AC 198 ms
53,692 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (max > 1 || hm.size() > 1) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
        
        sc.close();
    }
}
0