結果

問題 No.2954 Calculation of Exponentiation
ユーザー hato336hato336
提出日時 2024-11-08 21:37:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-11-08 21:37:30
合計ジャッジ時間 5,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
80,000 KB
testcase_01 AC 123 ms
79,744 KB
testcase_02 AC 131 ms
79,744 KB
testcase_03 AC 123 ms
79,872 KB
testcase_04 AC 123 ms
80,128 KB
testcase_05 AC 122 ms
79,872 KB
testcase_06 AC 162 ms
80,128 KB
testcase_07 AC 124 ms
80,128 KB
testcase_08 AC 125 ms
80,128 KB
testcase_09 AC 124 ms
80,128 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 129 ms
80,000 KB
testcase_14 AC 128 ms
80,128 KB
testcase_15 AC 137 ms
80,128 KB
testcase_16 AC 123 ms
80,128 KB
testcase_17 AC 126 ms
80,000 KB
testcase_18 AC 124 ms
80,000 KB
testcase_19 AC 131 ms
80,128 KB
testcase_20 AC 130 ms
80,256 KB
testcase_21 AC 124 ms
79,744 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 135 ms
80,128 KB
testcase_25 AC 126 ms
80,000 KB
testcase_26 AC 128 ms
80,128 KB
testcase_27 AC 127 ms
79,744 KB
testcase_28 AC 122 ms
80,000 KB
testcase_29 AC 122 ms
80,128 KB
testcase_30 AC 121 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
import math,decimal
a,b = map(decimal.Decimal,input().split())
if a != math.floor(a):
    print('No')
    exit()
a = int(a)
for i in make_divisors(a):
    if i == 1:
        continue
    for j in range(30):
        if pow(i,j) == a:
            z = decimal.Decimal(j) * b
            if z == math.floor(z):
                exit(print('Yes'))
        if pow(i,j) > a:
            break
print('No')
0