結果

問題 No.2954 Calculation of Exponentiation
ユーザー hato336hato336
提出日時 2024-11-08 21:54:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-11-08 21:54:18
合計ジャッジ時間 5,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
79,744 KB
testcase_01 AC 139 ms
80,000 KB
testcase_02 AC 138 ms
80,256 KB
testcase_03 AC 131 ms
80,256 KB
testcase_04 AC 134 ms
79,932 KB
testcase_05 AC 172 ms
81,920 KB
testcase_06 AC 129 ms
80,256 KB
testcase_07 AC 142 ms
80,000 KB
testcase_08 AC 189 ms
81,536 KB
testcase_09 AC 172 ms
81,920 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 127 ms
80,128 KB
testcase_14 AC 132 ms
80,128 KB
testcase_15 AC 176 ms
81,920 KB
testcase_16 AC 205 ms
81,920 KB
testcase_17 AC 178 ms
81,792 KB
testcase_18 AC 176 ms
81,900 KB
testcase_19 AC 177 ms
81,920 KB
testcase_20 WA -
testcase_21 AC 172 ms
81,792 KB
testcase_22 AC 129 ms
79,980 KB
testcase_23 AC 141 ms
80,256 KB
testcase_24 AC 129 ms
80,272 KB
testcase_25 AC 172 ms
81,920 KB
testcase_26 AC 129 ms
80,128 KB
testcase_27 AC 183 ms
81,920 KB
testcase_28 AC 181 ms
81,792 KB
testcase_29 AC 135 ms
80,256 KB
testcase_30 AC 137 ms
80,000 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())
c = math.floor(b)
if b < 0 and a != decimal.Decimal('1') and a != decimal.Decimal('-1') and a != decimal.Decimal('0'):
    exit(print('No'))
b -= c
decimal.getcontext().prec = 1000

z = pow(a,b)
if z == math.floor(z):
    print('Yes')
else:
    print('No')
0