結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
80,128 KB
testcase_01 AC 117 ms
80,128 KB
testcase_02 AC 115 ms
80,128 KB
testcase_03 AC 118 ms
80,000 KB
testcase_04 AC 131 ms
80,000 KB
testcase_05 AC 115 ms
80,000 KB
testcase_06 AC 115 ms
79,744 KB
testcase_07 AC 119 ms
79,744 KB
testcase_08 AC 129 ms
79,744 KB
testcase_09 AC 120 ms
80,256 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 115 ms
80,000 KB
testcase_14 AC 117 ms
79,744 KB
testcase_15 AC 118 ms
80,128 KB
testcase_16 AC 119 ms
80,000 KB
testcase_17 AC 117 ms
80,000 KB
testcase_18 AC 142 ms
79,872 KB
testcase_19 AC 114 ms
80,000 KB
testcase_20 AC 117 ms
79,872 KB
testcase_21 AC 115 ms
80,000 KB
testcase_22 WA -
testcase_23 AC 113 ms
79,744 KB
testcase_24 AC 113 ms
80,000 KB
testcase_25 AC 116 ms
80,128 KB
testcase_26 AC 114 ms
80,000 KB
testcase_27 AC 128 ms
79,872 KB
testcase_28 AC 116 ms
80,128 KB
testcase_29 AC 113 ms
79,744 KB
testcase_30 AC 115 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 b == decimal.Decimal('0'):
    exit(print('Yes'))
if a != math.floor(a):
    print('No')
    exit()
a = int(a)
b = abs(b)
for i in make_divisors(a):
    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