結果

問題 No.36 素数が嫌い!
ユーザー NoaSaberNoaSaber
提出日時 2021-03-08 10:28:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 59,636 KB
最終ジャッジ日時 2024-10-09 19:36:34
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
58,192 KB
testcase_01 AC 141 ms
59,192 KB
testcase_02 AC 39 ms
52,536 KB
testcase_03 AC 37 ms
52,780 KB
testcase_04 AC 38 ms
53,480 KB
testcase_05 AC 40 ms
58,568 KB
testcase_06 AC 40 ms
59,636 KB
testcase_07 AC 41 ms
57,848 KB
testcase_08 AC 40 ms
58,096 KB
testcase_09 AC 41 ms
57,164 KB
testcase_10 AC 41 ms
57,404 KB
testcase_11 AC 83 ms
58,164 KB
testcase_12 AC 168 ms
58,724 KB
testcase_13 AC 168 ms
58,972 KB
testcase_14 AC 121 ms
58,380 KB
testcase_15 AC 37 ms
52,704 KB
testcase_16 AC 37 ms
52,492 KB
testcase_17 AC 38 ms
52,892 KB
testcase_18 AC 41 ms
58,488 KB
testcase_19 AC 91 ms
58,116 KB
testcase_20 AC 168 ms
58,764 KB
testcase_21 AC 139 ms
58,064 KB
testcase_22 AC 141 ms
58,700 KB
testcase_23 AC 101 ms
58,492 KB
testcase_24 AC 107 ms
57,676 KB
testcase_25 AC 106 ms
57,948 KB
testcase_26 AC 119 ms
57,804 KB
testcase_27 AC 150 ms
58,704 KB
testcase_28 AC 116 ms
58,168 KB
testcase_29 AC 164 ms
57,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
def divisor_enu(N):
    l=[]
    for i in range(2,int(N**0.5)+1):
        cnt=0
        if N%i==0:
            while N%i==0:
                cnt+=1
                N//=i
            l.append((i,cnt))
    if N != 1:
        l.append((N,1))
    return l
x=divisor_enu(N)
ans=0
for i,j in x:
    ans+=j

print("YES" if ans>=3 else "NO")
0