結果

問題 No.25 有限小数
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-15 12:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 56,064 KB
最終ジャッジ日時 2024-09-16 20:50:12
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,808 KB
testcase_01 AC 49 ms
55,552 KB
testcase_02 AC 47 ms
55,936 KB
testcase_03 AC 47 ms
55,296 KB
testcase_04 AC 47 ms
56,064 KB
testcase_05 AC 47 ms
55,808 KB
testcase_06 AC 47 ms
55,040 KB
testcase_07 AC 48 ms
55,424 KB
testcase_08 AC 48 ms
55,552 KB
testcase_09 AC 47 ms
55,040 KB
testcase_10 AC 47 ms
55,808 KB
testcase_11 AC 47 ms
55,424 KB
testcase_12 AC 48 ms
55,808 KB
testcase_13 AC 47 ms
55,552 KB
testcase_14 AC 46 ms
55,808 KB
testcase_15 AC 46 ms
55,808 KB
testcase_16 AC 46 ms
55,296 KB
testcase_17 AC 47 ms
55,552 KB
testcase_18 AC 48 ms
55,040 KB
testcase_19 AC 47 ms
55,424 KB
testcase_20 AC 46 ms
56,064 KB
testcase_21 AC 48 ms
55,424 KB
testcase_22 AC 48 ms
55,808 KB
testcase_23 AC 47 ms
55,552 KB
testcase_24 AC 46 ms
55,040 KB
testcase_25 AC 47 ms
55,296 KB
testcase_26 AC 47 ms
55,680 KB
testcase_27 AC 46 ms
55,552 KB
testcase_28 AC 46 ms
55,552 KB
testcase_29 AC 46 ms
55,552 KB
testcase_30 AC 46 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
M = int(input())
X = Counter([])
Y = Counter([])
while N%5==0:
    N//=5
    X[5] += 1
while N%2==0:
    N//=2
    X[2] += 1    


while M%5==0:
    M//=5
    Y[5] += 1
while M%2==0:
    M//=2
    Y[2] += 1   

if M!=1:
    if N==M:
        print(1)
    else:
        print(-1)
    exit()

m = min(X[2],X[5])
X[2] -= m
X[5] -= m

m = min(Y[2],Y[5])
Y[2] -= m
Y[5] -= m

m = min(X[2],Y[2])
X[2] -= m
Y[2] -= m
m = min(X[5],Y[5])
X[5] -= m
Y[5] -= m

K = max(Y.values())
X[5] += K - Y[5]
X[2] += K - Y[2]
N *= pow(5,X[5])*pow(2,X[2])
S = str(N)
for s in S[::-1]:
    if s!='0':
        print(s)
        exit()
0