結果

問題 No.36 素数が嫌い!
ユーザー ThetaTheta
提出日時 2022-11-07 14:13:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,863 ms / 5,000 ms
コード長 1,116 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 22:11:51
合計ジャッジ時間 9,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
10,624 KB
testcase_01 AC 61 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 34 ms
10,496 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 625 ms
10,624 KB
testcase_12 AC 1,863 ms
10,624 KB
testcase_13 AC 1,833 ms
10,624 KB
testcase_14 AC 33 ms
10,624 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 103 ms
10,624 KB
testcase_20 AC 86 ms
10,624 KB
testcase_21 AC 267 ms
10,624 KB
testcase_22 AC 56 ms
10,624 KB
testcase_23 AC 40 ms
10,624 KB
testcase_24 AC 290 ms
10,624 KB
testcase_25 AC 345 ms
10,752 KB
testcase_26 AC 662 ms
10,496 KB
testcase_27 AC 59 ms
10,624 KB
testcase_28 AC 637 ms
10,496 KB
testcase_29 AC 40 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count


def calc_prime_factorize(num: int) -> dict[int, int]:
    if num < 2:
        raise ValueError

    divisors = {}
    for divisor in count(2):
        if divisor ** 2 > num:
            if num != 1:
                divisors[num] = 1
            break
        while num % divisor == 0 and num != 1:
            try:
                divisors[divisor] += 1
            except KeyError:
                divisors[divisor] = 1
            num //= divisor

    return divisors


def main():
    N = int(input())
    if N == 1:
        print("NO")
        return
    factors = calc_prime_factorize(N)

    match len(factors):
        case 0:
            raise ValueError
        case 1:
            if list(factors.values())[0] > 2:
                print("YES")
            else:
                print("NO")
        case 2:
            factors_num = set(factors.values())
            if len(factors_num) == 1 and factors_num.pop() == 1:
                print("NO")
            else:
                print("YES")

        case _:
            print("YES")


if __name__ == "__main__":
    main()
0