結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
62,584 KB
testcase_01 AC 156 ms
61,836 KB
testcase_02 AC 46 ms
55,824 KB
testcase_03 RE -
testcase_04 AC 45 ms
55,840 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 49 ms
61,188 KB
testcase_08 AC 51 ms
61,172 KB
testcase_09 AC 50 ms
61,520 KB
testcase_10 AC 49 ms
62,212 KB
testcase_11 AC 92 ms
61,468 KB
testcase_12 AC 189 ms
60,992 KB
testcase_13 AC 187 ms
61,460 KB
testcase_14 RE -
testcase_15 AC 45 ms
55,876 KB
testcase_16 AC 48 ms
56,248 KB
testcase_17 AC 48 ms
56,284 KB
testcase_18 AC 48 ms
62,044 KB
testcase_19 AC 104 ms
62,468 KB
testcase_20 AC 188 ms
62,248 KB
testcase_21 AC 156 ms
61,656 KB
testcase_22 AC 159 ms
61,708 KB
testcase_23 AC 115 ms
61,180 KB
testcase_24 AC 127 ms
62,324 KB
testcase_25 AC 121 ms
61,244 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

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 = P[1]
if all(i%p==0 for i in X[1:]):
    print('YES')
else:
    print('NO')
0