結果

問題 No.36 素数が嫌い!
ユーザー ronpooronpoo
提出日時 2023-08-23 14:42:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 59,144 KB
最終ジャッジ日時 2024-06-01 12:13:49
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
57,680 KB
testcase_01 AC 43 ms
58,212 KB
testcase_02 AC 39 ms
52,084 KB
testcase_03 AC 40 ms
52,784 KB
testcase_04 WA -
testcase_05 AC 41 ms
57,356 KB
testcase_06 AC 43 ms
58,344 KB
testcase_07 AC 43 ms
57,856 KB
testcase_08 AC 40 ms
52,872 KB
testcase_09 AC 40 ms
53,140 KB
testcase_10 AC 42 ms
58,276 KB
testcase_11 AC 64 ms
58,112 KB
testcase_12 AC 110 ms
58,008 KB
testcase_13 WA -
testcase_14 AC 42 ms
58,648 KB
testcase_15 AC 39 ms
53,076 KB
testcase_16 AC 39 ms
52,404 KB
testcase_17 AC 39 ms
52,664 KB
testcase_18 AC 39 ms
52,492 KB
testcase_19 AC 45 ms
57,528 KB
testcase_20 AC 44 ms
58,452 KB
testcase_21 AC 51 ms
57,944 KB
testcase_22 AC 45 ms
58,848 KB
testcase_23 AC 43 ms
57,920 KB
testcase_24 AC 51 ms
57,508 KB
testcase_25 AC 53 ms
58,680 KB
testcase_26 AC 65 ms
58,088 KB
testcase_27 AC 42 ms
58,916 KB
testcase_28 AC 65 ms
57,952 KB
testcase_29 AC 42 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def prime_factorize_num(x):
    d = {1:1}
    if x % 2 == 0:
        d[2] = 0
    while x % 2 == 0:
        d[2] += 1
        x //= 2
    f = 3
    while f * f <= x:
        if x % f == 0:
            if f not in d:
                d[f] = 0
            d[f] += 1
            x //= f
        else:
            f += 2
    if x != 1:
        if x not in d:
            d[x] = 0
        d[x] += 1
        
    return d

d = prime_factorize_num(N)

if len(d) >= 4:
    print('YES')
else:
    for v in d.values():
        if v >= 2:
            print('YES')
            break
    else:
        print('NO')
0