結果

問題 No.36 素数が嫌い!
ユーザー Navier_Boltzmann
提出日時 2023-06-09 03:14:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 62,716 KB
最終ジャッジ日時 2024-12-31 10:30:01
合計ジャッジ時間 5,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19 WA * 7
権限があれば一括ダウンロードができます

ソースコード

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]
if len(make_divisors(N))<=3:
    print('NO')
else:
    print('YES')
    
0