結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
60,900 KB
testcase_01 AC 157 ms
62,112 KB
testcase_02 AC 44 ms
56,412 KB
testcase_03 AC 50 ms
56,688 KB
testcase_04 AC 47 ms
57,380 KB
testcase_05 AC 50 ms
61,528 KB
testcase_06 AC 51 ms
61,400 KB
testcase_07 AC 49 ms
61,360 KB
testcase_08 AC 49 ms
61,460 KB
testcase_09 AC 49 ms
61,004 KB
testcase_10 AC 47 ms
61,640 KB
testcase_11 AC 95 ms
61,468 KB
testcase_12 AC 187 ms
62,508 KB
testcase_13 AC 187 ms
61,004 KB
testcase_14 AC 135 ms
62,396 KB
testcase_15 AC 47 ms
56,400 KB
testcase_16 AC 45 ms
57,500 KB
testcase_17 AC 44 ms
56,384 KB
testcase_18 AC 47 ms
61,316 KB
testcase_19 AC 101 ms
61,180 KB
testcase_20 AC 188 ms
60,852 KB
testcase_21 AC 155 ms
60,684 KB
testcase_22 AC 157 ms
61,816 KB
testcase_23 AC 116 ms
60,844 KB
testcase_24 AC 126 ms
62,068 KB
testcase_25 AC 121 ms
60,896 KB
testcase_26 AC 131 ms
61,544 KB
testcase_27 AC 166 ms
61,764 KB
testcase_28 AC 131 ms
62,960 KB
testcase_29 AC 181 ms
61,072 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