結果

問題 No.2379 Burnside's Theorem
ユーザー flygonflygon
提出日時 2023-07-14 21:21:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 61,508 KB
最終ジャッジ日時 2024-09-16 06:05:05
合計ジャッジ時間 1,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

def fact(n):
    l = []
    tmp = n
    for i in range(2,int(pow(n,0.5))+1):
        if tmp % i == 0:
            cnt = 0
            while tmp % i == 0:
                cnt += 1
                tmp //= i
            l.append([i,cnt])
    if tmp != 1:
        l.append([tmp,1])
    return l

n = int(input())
if len(fact(n)) <= 2:
    print('Yes')
else:
    print('No')
0