結果

問題 No.36 素数が嫌い!
ユーザー AEnAEn
提出日時 2022-05-15 11:13:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 59,932 KB
最終ジャッジ日時 2024-07-26 13:02:44
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
58,140 KB
testcase_01 AC 132 ms
57,888 KB
testcase_02 AC 37 ms
52,452 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,396 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
58,604 KB
testcase_08 AC 41 ms
57,920 KB
testcase_09 AC 41 ms
59,248 KB
testcase_10 AC 36 ms
57,996 KB
testcase_11 AC 79 ms
58,600 KB
testcase_12 AC 157 ms
57,988 KB
testcase_13 AC 156 ms
58,056 KB
testcase_14 AC 110 ms
58,432 KB
testcase_15 AC 34 ms
53,952 KB
testcase_16 AC 34 ms
52,396 KB
testcase_17 AC 34 ms
52,752 KB
testcase_18 AC 36 ms
58,308 KB
testcase_19 AC 83 ms
58,652 KB
testcase_20 AC 157 ms
58,484 KB
testcase_21 AC 128 ms
58,008 KB
testcase_22 AC 132 ms
58,612 KB
testcase_23 AC 93 ms
58,008 KB
testcase_24 AC 98 ms
57,632 KB
testcase_25 AC 98 ms
57,316 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])
    return arr

N = int(input())
a = factorization(N)
if len(a) == 1 and a[0][1] <= 2:
    print('NO')
else:
    print('YES')
0