結果

問題 No.2954 Calculation of Exponentiation
ユーザー hato336hato336
提出日時 2024-11-08 21:57:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,292 KB
最終ジャッジ日時 2024-11-08 21:57:29
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
80,172 KB
testcase_01 AC 134 ms
80,200 KB
testcase_02 AC 128 ms
80,132 KB
testcase_03 AC 129 ms
80,128 KB
testcase_04 AC 131 ms
79,744 KB
testcase_05 AC 129 ms
80,128 KB
testcase_06 AC 128 ms
79,744 KB
testcase_07 AC 155 ms
80,240 KB
testcase_08 AC 127 ms
80,128 KB
testcase_09 AC 141 ms
80,128 KB
testcase_10 AC 132 ms
79,744 KB
testcase_11 AC 136 ms
79,904 KB
testcase_12 AC 132 ms
80,292 KB
testcase_13 AC 132 ms
80,128 KB
testcase_14 AC 130 ms
80,128 KB
testcase_15 AC 132 ms
79,744 KB
testcase_16 AC 135 ms
80,128 KB
testcase_17 AC 131 ms
80,256 KB
testcase_18 AC 135 ms
79,744 KB
testcase_19 AC 133 ms
80,000 KB
testcase_20 AC 132 ms
79,924 KB
testcase_21 AC 135 ms
80,148 KB
testcase_22 AC 131 ms
79,744 KB
testcase_23 AC 129 ms
80,152 KB
testcase_24 AC 138 ms
80,128 KB
testcase_25 AC 130 ms
80,248 KB
testcase_26 AC 128 ms
79,744 KB
testcase_27 AC 129 ms
79,744 KB
testcase_28 AC 130 ms
80,256 KB
testcase_29 AC 132 ms
80,128 KB
testcase_30 AC 156 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') or a == decimal.Decimal('0') or a == decimal.Decimal('1') or a == decimal.Decimal('-1'):
    exit(print('Yes'))
if b < decimal.Decimal('0'):
    q = decimal.Decimal('1000000') / (decimal.Decimal('1000000') * a)
    if q == math.floor(q):
        print('Yes')
        exit()
    exit(print('No'))
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