結果

問題 No.2379 Burnside's Theorem
ユーザー komkompikomkompi
提出日時 2023-07-15 00:23:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 668 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-16 09:21:57
合計ジャッジ時間 3,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 116 ms
106,880 KB
testcase_03 AC 114 ms
107,136 KB
testcase_04 WA -
testcase_05 AC 116 ms
107,008 KB
testcase_06 AC 115 ms
107,264 KB
testcase_07 AC 117 ms
107,136 KB
testcase_08 WA -
testcase_09 AC 113 ms
107,264 KB
testcase_10 WA -
testcase_11 AC 118 ms
107,136 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 109 ms
107,264 KB
testcase_20 AC 110 ms
107,136 KB
testcase_21 AC 107 ms
107,136 KB
testcase_22 WA -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

def sieve_of_eratosthenes(x):
    nums = [i for i in range(x+1)]

    root = int(pow(x,0.5))
    for i in range(2,root + 1):
        if nums[i] != 0:
            for j in range(i, x+1):
                if i*j >= x+1:
                    break
                nums[i*j] = 0

    primes = sorted(list(set(nums)))[2:]
    
    return primes


primes=sieve_of_eratosthenes(10**6+2)

pool_q=set()

for prime in primes:
    temp=prime
    while temp<=10**12:
        pool_q.add(temp)
        temp*=prime

N=int(input())

for p in primes:
    q=N
    while q%p==0:
        q//=p
    
    if q in pool_q:
        exit("Yes")
    
print("No")
0