結果

問題 No.25 有限小数
ユーザー ayaoniayaoni
提出日時 2020-12-04 13:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 895 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-09-14 23:04:42
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,640 KB
testcase_01 AC 38 ms
51,880 KB
testcase_02 AC 39 ms
53,692 KB
testcase_03 AC 39 ms
52,396 KB
testcase_04 AC 38 ms
52,540 KB
testcase_05 AC 38 ms
53,812 KB
testcase_06 AC 39 ms
52,124 KB
testcase_07 AC 37 ms
52,072 KB
testcase_08 AC 38 ms
53,984 KB
testcase_09 AC 39 ms
52,524 KB
testcase_10 AC 40 ms
51,940 KB
testcase_11 AC 40 ms
52,408 KB
testcase_12 AC 39 ms
53,484 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 39 ms
53,200 KB
testcase_15 AC 39 ms
53,348 KB
testcase_16 AC 38 ms
53,016 KB
testcase_17 AC 38 ms
52,936 KB
testcase_18 AC 39 ms
53,376 KB
testcase_19 AC 38 ms
53,008 KB
testcase_20 AC 38 ms
52,064 KB
testcase_21 AC 39 ms
52,800 KB
testcase_22 AC 38 ms
53,268 KB
testcase_23 AC 37 ms
53,556 KB
testcase_24 AC 39 ms
52,404 KB
testcase_25 AC 40 ms
53,828 KB
testcase_26 AC 38 ms
53,076 KB
testcase_27 AC 39 ms
54,024 KB
testcase_28 AC 39 ms
52,744 KB
testcase_29 AC 39 ms
52,608 KB
testcase_30 AC 38 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = I(),I()
g = gcd(N,M)
N //= g
M //= g

X = M
a,b = 0,0
while X % 2 == 0:
    X //= 2
    a += 1
while X % 5 == 0:
    X //= 5
    b += 1

if X != 1:
    print(-1)
else:
    if a == b == 0:
        while N % 10 == 0:
            N //= 10
        print(N % 10)
    else:
        ans = N % 10
        if a < b:
            ans *= pow(2,b-a,10)
        elif a > b:
            ans *= pow(5,a-b,10)
        print(ans % 10)
0