結果

問題 No.36 素数が嫌い!
ユーザー roarisroaris
提出日時 2019-08-08 11:20:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 19:08:43
合計ジャッジ時間 14,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
10,752 KB
testcase_01 AC 732 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 383 ms
10,624 KB
testcase_12 AC 1,137 ms
10,752 KB
testcase_13 AC 1,142 ms
10,752 KB
testcase_14 AC 502 ms
10,752 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 470 ms
10,880 KB
testcase_20 AC 994 ms
10,752 KB
testcase_21 AC 890 ms
10,624 KB
testcase_22 AC 912 ms
10,624 KB
testcase_23 AC 571 ms
10,752 KB
testcase_24 AC 482 ms
10,880 KB
testcase_25 AC 601 ms
10,624 KB
testcase_26 AC 706 ms
10,624 KB
testcase_27 AC 992 ms
10,752 KB
testcase_28 AC 690 ms
10,752 KB
testcase_29 AC 1,112 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorize(n):
    factors = []
    
    for div in range(2, int(n**0.5) + 1):
        cnt = 0
        while n % div == 0:
            n //= div
            cnt += 1
        if cnt > 0:
            factors.append((div, cnt))
    
    if n > 1:
        factors.append((n, 1))
    
    return factors

N = int(input())
factors = factorize(N)

if len(factors) == 1:
    _, cnt = factors[0]
    
    if cnt >= 3:
        print('YES')
    else:
        print('NO')
elif len(factors) == 2:
    _, cnt1 = factors[0]
    _, cnt2 = factors[1]
    
    if cnt1 >= 2 or cnt2 >= 2:
        print('YES')
    else:
        print('NO')
else:
    print('YES')
0