結果

問題 No.2379 Burnside's Theorem
ユーザー shogo314shogo314
提出日時 2023-07-14 21:24:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 534 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 75,296 KB
最終ジャッジ日時 2024-09-16 06:11:57
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
73,756 KB
testcase_01 AC 91 ms
73,776 KB
testcase_02 AC 82 ms
72,484 KB
testcase_03 AC 78 ms
72,932 KB
testcase_04 AC 88 ms
73,704 KB
testcase_05 AC 79 ms
72,980 KB
testcase_06 AC 80 ms
72,828 KB
testcase_07 AC 75 ms
72,920 KB
testcase_08 WA -
testcase_09 AC 73 ms
72,956 KB
testcase_10 WA -
testcase_11 AC 75 ms
73,424 KB
testcase_12 WA -
testcase_13 AC 80 ms
74,740 KB
testcase_14 AC 80 ms
73,344 KB
testcase_15 AC 81 ms
73,204 KB
testcase_16 AC 88 ms
74,524 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 75 ms
73,156 KB
testcase_20 AC 75 ms
73,168 KB
testcase_21 AC 76 ms
73,164 KB
testcase_22 AC 80 ms
73,824 KB
testcase_23 AC 73 ms
74,228 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
else:
    print('Yes')
    exit(0)
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