結果

問題 No.25 有限小数
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-15 12:23:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 57,528 KB
最終ジャッジ日時 2024-09-16 20:47:46
合計ジャッジ時間 2,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,612 KB
testcase_01 AC 40 ms
57,360 KB
testcase_02 AC 41 ms
55,756 KB
testcase_03 AC 40 ms
57,172 KB
testcase_04 AC 39 ms
56,348 KB
testcase_05 AC 40 ms
56,568 KB
testcase_06 AC 41 ms
56,936 KB
testcase_07 AC 45 ms
56,908 KB
testcase_08 AC 45 ms
56,336 KB
testcase_09 AC 42 ms
56,188 KB
testcase_10 AC 42 ms
56,780 KB
testcase_11 AC 40 ms
56,296 KB
testcase_12 AC 40 ms
56,624 KB
testcase_13 AC 40 ms
55,768 KB
testcase_14 AC 41 ms
56,308 KB
testcase_15 AC 40 ms
55,916 KB
testcase_16 AC 40 ms
55,228 KB
testcase_17 AC 40 ms
56,280 KB
testcase_18 AC 40 ms
56,368 KB
testcase_19 AC 40 ms
55,996 KB
testcase_20 AC 39 ms
56,336 KB
testcase_21 AC 38 ms
55,736 KB
testcase_22 WA -
testcase_23 AC 42 ms
56,276 KB
testcase_24 AC 39 ms
57,528 KB
testcase_25 AC 40 ms
55,832 KB
testcase_26 AC 39 ms
56,308 KB
testcase_27 AC 40 ms
55,868 KB
testcase_28 AC 39 ms
56,680 KB
testcase_29 AC 40 ms
55,864 KB
testcase_30 AC 39 ms
56,376 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:
    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