結果

問題 No.2379 Burnside's Theorem
ユーザー ニックネームニックネーム
提出日時 2023-07-14 21:23:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-16 06:09:58
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = set()
for i in range(2,int(n**0.5)+1):
    while n%i==0: n //= i; s.add(i)
if n>1: s.add(n)
print("Yes" if len(s)<=2 else "No")
0