結果

問題 No.1556 Power Equality
ユーザー ygd.ygd.
提出日時 2021-06-29 19:41:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-06-25 22:04:29
合計ジャッジ時間 1,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 46 ms
57,728 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 47 ms
57,344 KB
testcase_07 AC 45 ms
57,344 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 46 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
 
    if temp!=1: #最後に残ったもの(もしくは素数)の場合はここ
        arr.append([temp, 1])
 
    if arr==[]: #1の場合はここ
        arr.append([n, 1])
 
    return arr

def main():
    A,B = map(int,input().split())
    pa = factorization(A)
    for i in range(len(pa)):
        pa[i][1] *= B
    pb = factorization(B)
    for i in range(len(pb)):
        pb[i][1] *= A
    #print(pa,pb)
    if pa == pb:
        print("Yes")
    else:
        print("No")
if __name__ == '__main__':
    main()
0