結果

問題 No.2379 Burnside's Theorem
ユーザー komkompikomkompi
提出日時 2023-07-15 00:24:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-16 09:22:09
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
106,624 KB
testcase_01 AC 123 ms
106,624 KB
testcase_02 AC 124 ms
107,264 KB
testcase_03 AC 125 ms
107,264 KB
testcase_04 WA -
testcase_05 AC 126 ms
106,880 KB
testcase_06 AC 126 ms
107,392 KB
testcase_07 AC 124 ms
107,008 KB
testcase_08 WA -
testcase_09 AC 127 ms
107,392 KB
testcase_10 WA -
testcase_11 AC 126 ms
106,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 121 ms
106,368 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 125 ms
107,008 KB
testcase_20 AC 125 ms
107,264 KB
testcase_21 AC 124 ms
107,264 KB
testcase_22 WA -
testcase_23 AC 121 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

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:
        print("Yes")
        exit()
    
print("No")
0