結果

問題 No.2379 Burnside's Theorem
ユーザー miho-4miho-4
提出日時 2023-07-14 21:24:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 59,268 KB
最終ジャッジ日時 2024-09-16 06:11:13
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
58,060 KB
testcase_01 AC 48 ms
57,268 KB
testcase_02 AC 48 ms
57,416 KB
testcase_03 AC 50 ms
58,316 KB
testcase_04 AC 50 ms
58,388 KB
testcase_05 AC 49 ms
57,928 KB
testcase_06 AC 48 ms
57,964 KB
testcase_07 AC 50 ms
58,100 KB
testcase_08 AC 52 ms
57,132 KB
testcase_09 AC 49 ms
58,448 KB
testcase_10 AC 51 ms
58,580 KB
testcase_11 AC 51 ms
57,896 KB
testcase_12 AC 52 ms
58,976 KB
testcase_13 AC 47 ms
57,920 KB
testcase_14 AC 48 ms
57,836 KB
testcase_15 AC 46 ms
58,648 KB
testcase_16 AC 49 ms
59,268 KB
testcase_17 AC 48 ms
58,236 KB
testcase_18 AC 48 ms
58,272 KB
testcase_19 AC 50 ms
58,772 KB
testcase_20 AC 52 ms
57,932 KB
testcase_21 AC 54 ms
58,680 KB
testcase_22 WA -
testcase_23 AC 50 ms
58,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
S=set()
for i in range(2,10**6):
  while n%i==0:
    n//=i
    S.add(i)
S.add(n)
S-={1}
print("Yes" if 1<=len(S)<=2 else "No")
0