結果

問題 No.36 素数が嫌い!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-09 03:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 62,988 KB
最終ジャッジ日時 2024-12-31 10:32:52
合計ジャッジ時間 4,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
61,304 KB
testcase_01 AC 165 ms
61,240 KB
testcase_02 AC 48 ms
56,056 KB
testcase_03 AC 50 ms
56,588 KB
testcase_04 AC 49 ms
55,616 KB
testcase_05 AC 55 ms
62,388 KB
testcase_06 AC 53 ms
61,716 KB
testcase_07 AC 52 ms
62,068 KB
testcase_08 AC 51 ms
61,316 KB
testcase_09 AC 52 ms
62,072 KB
testcase_10 AC 52 ms
61,460 KB
testcase_11 AC 100 ms
61,568 KB
testcase_12 AC 196 ms
62,172 KB
testcase_13 AC 198 ms
60,908 KB
testcase_14 AC 142 ms
61,308 KB
testcase_15 AC 49 ms
56,200 KB
testcase_16 AC 50 ms
57,132 KB
testcase_17 AC 51 ms
56,608 KB
testcase_18 AC 53 ms
62,320 KB
testcase_19 AC 108 ms
61,940 KB
testcase_20 AC 198 ms
61,256 KB
testcase_21 AC 163 ms
62,660 KB
testcase_22 AC 169 ms
61,580 KB
testcase_23 AC 121 ms
61,956 KB
testcase_24 AC 129 ms
60,716 KB
testcase_25 AC 128 ms
60,632 KB
testcase_26 AC 144 ms
62,988 KB
testcase_27 AC 177 ms
62,068 KB
testcase_28 AC 137 ms
62,040 KB
testcase_29 AC 194 ms
61,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
X = make_divisors(N)
if len(X)<=3:
    print('NO')
    exit()

if len(X)>=5:
    print('YES')
    exit()

X.sort()
p = X[1]
if all(i%p==0 for i in X[1:]):
    print('YES')
else:
    print('NO')
0