結果

問題 No.2379 Burnside's Theorem
ユーザー shogo314shogo314
提出日時 2023-07-14 21:27:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 75,040 KB
最終ジャッジ日時 2024-09-16 06:16:19
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
72,948 KB
testcase_01 AC 79 ms
74,820 KB
testcase_02 AC 83 ms
73,332 KB
testcase_03 AC 81 ms
74,308 KB
testcase_04 AC 79 ms
73,220 KB
testcase_05 AC 81 ms
74,076 KB
testcase_06 AC 79 ms
73,608 KB
testcase_07 AC 79 ms
73,324 KB
testcase_08 AC 80 ms
73,744 KB
testcase_09 AC 77 ms
73,608 KB
testcase_10 AC 83 ms
73,288 KB
testcase_11 AC 82 ms
73,804 KB
testcase_12 AC 79 ms
74,364 KB
testcase_13 AC 81 ms
73,200 KB
testcase_14 AC 85 ms
73,824 KB
testcase_15 AC 82 ms
75,040 KB
testcase_16 AC 84 ms
74,524 KB
testcase_17 AC 84 ms
74,336 KB
testcase_18 AC 90 ms
74,744 KB
testcase_19 AC 85 ms
74,852 KB
testcase_20 AC 80 ms
73,796 KB
testcase_21 AC 80 ms
74,404 KB
testcase_22 AC 89 ms
73,432 KB
testcase_23 AC 89 ms
74,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MAX=10**6
prime=[True for i in range(MAX+1)]
prime[0]=prime[1]=False
for i in range(2,MAX+1):
    if not prime[i]:
        continue
    for j in range(2,MAX//i+1):
        prime[i*j]=False
N=int(input())
tmp=0
for i,p in enumerate(prime):
    if p:
        if N%i==0:
            tmp+=1
            while N%i==0:
                N//=i
if N!=1:
    tmp+=1
if tmp<=2:
    print('Yes')
else:
    print('No')
0