結果

問題 No.36 素数が嫌い!
ユーザー roarisroaris
提出日時 2019-08-08 11:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,075 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 19:17:55
合計ジャッジ時間 13,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
10,624 KB
testcase_01 AC 677 ms
10,880 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 24 ms
10,880 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 371 ms
10,752 KB
testcase_12 AC 1,075 ms
10,752 KB
testcase_13 AC 1,041 ms
10,624 KB
testcase_14 AC 457 ms
10,752 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 25 ms
10,496 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 434 ms
10,496 KB
testcase_20 AC 913 ms
10,752 KB
testcase_21 AC 804 ms
10,752 KB
testcase_22 AC 832 ms
10,624 KB
testcase_23 AC 517 ms
10,752 KB
testcase_24 AC 462 ms
10,624 KB
testcase_25 AC 573 ms
10,496 KB
testcase_26 AC 658 ms
10,496 KB
testcase_27 AC 919 ms
10,752 KB
testcase_28 AC 635 ms
10,752 KB
testcase_29 AC 1,034 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorize(n):
    if n == 1:
        return [(1, 1)]
        
    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