結果

問題 No.2379 Burnside's Theorem
ユーザー dangodango
提出日時 2023-07-15 09:08:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 58,884 KB
最終ジャッジ日時 2024-09-16 17:19:59
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,092 KB
testcase_01 AC 41 ms
52,208 KB
testcase_02 AC 40 ms
52,348 KB
testcase_03 AC 39 ms
57,564 KB
testcase_04 AC 42 ms
58,444 KB
testcase_05 AC 39 ms
58,396 KB
testcase_06 AC 41 ms
57,664 KB
testcase_07 AC 37 ms
52,332 KB
testcase_08 AC 40 ms
57,868 KB
testcase_09 AC 40 ms
56,940 KB
testcase_10 AC 40 ms
57,276 KB
testcase_11 AC 36 ms
53,304 KB
testcase_12 AC 40 ms
58,884 KB
testcase_13 AC 47 ms
57,412 KB
testcase_14 AC 48 ms
56,800 KB
testcase_15 AC 52 ms
57,984 KB
testcase_16 AC 41 ms
58,044 KB
testcase_17 AC 38 ms
57,524 KB
testcase_18 AC 40 ms
57,356 KB
testcase_19 AC 38 ms
53,284 KB
testcase_20 AC 37 ms
52,896 KB
testcase_21 AC 37 ms
52,692 KB
testcase_22 AC 37 ms
52,328 KB
testcase_23 AC 38 ms
52,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
def pf(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
if n == 1 or len(set(pf(n))) <= 2:
    print("Yes")
else:
    print("No")
0