結果

問題 No.2379 Burnside's Theorem
ユーザー shogo314shogo314
提出日時 2023-07-14 21:23:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 75,756 KB
最終ジャッジ日時 2024-09-16 06:09:41
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
73,104 KB
testcase_01 AC 82 ms
73,448 KB
testcase_02 AC 77 ms
74,068 KB
testcase_03 AC 76 ms
73,520 KB
testcase_04 WA -
testcase_05 AC 83 ms
73,840 KB
testcase_06 AC 79 ms
73,880 KB
testcase_07 AC 78 ms
73,120 KB
testcase_08 WA -
testcase_09 AC 80 ms
73,392 KB
testcase_10 WA -
testcase_11 AC 75 ms
73,500 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 86 ms
74,296 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 83 ms
73,568 KB
testcase_20 AC 81 ms
72,472 KB
testcase_21 AC 78 ms
73,196 KB
testcase_22 AC 92 ms
75,728 KB
testcase_23 AC 82 ms
73,696 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())
for i,p in enumerate(prime):
    if p:
        if N%i==0:
            while N%i==0:
                N//=i
            break
for i,p in enumerate(prime):
    if p:
        if N%i==0:
            while N%i==0:
                N//=i
            break
if N==1:
    print('Yes')
else:
    print('No')
0