結果

問題 No.2379 Burnside's Theorem
ユーザー taro2023taro2023
提出日時 2023-07-14 21:52:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 58,360 KB
最終ジャッジ日時 2024-09-16 06:49:19
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,876 KB
testcase_01 AC 37 ms
51,808 KB
testcase_02 AC 35 ms
52,576 KB
testcase_03 AC 36 ms
57,856 KB
testcase_04 AC 37 ms
57,552 KB
testcase_05 AC 37 ms
58,012 KB
testcase_06 AC 40 ms
57,392 KB
testcase_07 AC 38 ms
53,024 KB
testcase_08 AC 38 ms
57,572 KB
testcase_09 AC 37 ms
57,664 KB
testcase_10 AC 37 ms
56,864 KB
testcase_11 AC 34 ms
52,036 KB
testcase_12 AC 36 ms
58,360 KB
testcase_13 AC 42 ms
57,324 KB
testcase_14 AC 46 ms
57,728 KB
testcase_15 AC 48 ms
56,844 KB
testcase_16 AC 42 ms
58,012 KB
testcase_17 AC 38 ms
57,620 KB
testcase_18 AC 39 ms
57,476 KB
testcase_19 AC 35 ms
52,536 KB
testcase_20 AC 33 ms
51,684 KB
testcase_21 AC 34 ms
51,616 KB
testcase_22 WA -
testcase_23 AC 34 ms
52,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
def prime_factors(n):
    i = 2
    factors = []
    while i * i <= n:
        if n % i:
            i += 1
        else:
            n //= i
            factors.append(i)
    if n > 1:
        factors.append(n)
    return factors
b=prime_factors(a)
if len(set(b)) ==2 or len(set(b)) ==1:
    print("Yes")
else:
    print("No")
0