結果

問題 No.2379 Burnside's Theorem
ユーザー n_nan_na
提出日時 2023-07-17 23:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 59,020 KB
最終ジャッジ日時 2024-09-17 23:59:41
合計ジャッジ時間 2,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,804 KB
testcase_01 AC 36 ms
52,016 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 44 ms
57,608 KB
testcase_04 AC 40 ms
58,336 KB
testcase_05 AC 41 ms
57,872 KB
testcase_06 AC 38 ms
56,988 KB
testcase_07 AC 40 ms
57,488 KB
testcase_08 AC 40 ms
57,532 KB
testcase_09 AC 41 ms
59,020 KB
testcase_10 AC 40 ms
58,112 KB
testcase_11 AC 40 ms
58,412 KB
testcase_12 AC 39 ms
57,672 KB
testcase_13 AC 47 ms
57,924 KB
testcase_14 AC 49 ms
58,992 KB
testcase_15 AC 52 ms
58,984 KB
testcase_16 AC 41 ms
57,664 KB
testcase_17 AC 41 ms
57,600 KB
testcase_18 AC 53 ms
58,344 KB
testcase_19 AC 44 ms
57,592 KB
testcase_20 AC 49 ms
57,812 KB
testcase_21 AC 52 ms
57,844 KB
testcase_22 AC 36 ms
52,752 KB
testcase_23 AC 54 ms
58,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def fact(n):
    _N = n #上限
    ans = []
    i = 2
    while i*i <= _N:
        if n%i == 0:
            cnt = 0
            while n%i == 0:
                cnt += 1
                n //= i
            ans.append([i,cnt]) #[素因数,個数]
        else:
            i += 1
    if n != 1:
        ans.append([n,1])
    return ans

N = int(input())
K = fact(N)
if len(K) <= 2:
    print("Yes")
else:
    print("No")
0