結果

問題 No.25 有限小数
ユーザー sotanishysotanishy
提出日時 2021-03-18 21:18:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 287 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 71,656 KB
最終ジャッジ日時 2023-08-10 18:39:24
合計ジャッジ時間 4,230 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,364 KB
testcase_01 AC 68 ms
71,656 KB
testcase_02 AC 64 ms
71,104 KB
testcase_03 AC 63 ms
71,460 KB
testcase_04 AC 61 ms
71,392 KB
testcase_05 AC 64 ms
71,360 KB
testcase_06 AC 69 ms
71,268 KB
testcase_07 AC 70 ms
71,368 KB
testcase_08 AC 71 ms
71,612 KB
testcase_09 AC 67 ms
71,348 KB
testcase_10 AC 66 ms
71,540 KB
testcase_11 AC 66 ms
71,368 KB
testcase_12 AC 64 ms
71,356 KB
testcase_13 AC 67 ms
71,468 KB
testcase_14 AC 67 ms
71,204 KB
testcase_15 AC 63 ms
71,312 KB
testcase_16 AC 65 ms
71,556 KB
testcase_17 AC 67 ms
71,460 KB
testcase_18 AC 67 ms
71,480 KB
testcase_19 AC 68 ms
71,356 KB
testcase_20 AC 65 ms
71,616 KB
testcase_21 AC 64 ms
71,252 KB
testcase_22 AC 64 ms
71,440 KB
testcase_23 AC 65 ms
71,416 KB
testcase_24 AC 65 ms
71,556 KB
testcase_25 AC 64 ms
71,304 KB
testcase_26 AC 67 ms
71,612 KB
testcase_27 AC 65 ms
71,428 KB
testcase_28 AC 64 ms
71,344 KB
testcase_29 AC 66 ms
71,344 KB
testcase_30 AC 68 ms
71,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
input = sys.stdin.readline

N = int(input())
M = int(input())
g = gcd(N, M)
N //= g
M //= g
while M % 5 == 0:
    M //= 5
    N *= 2
while M % 2 == 0:
    M //= 2
    N *= 5
if M != 1:
    print(-1)
    exit()
while N % 10 == 0:
    N //= 10
print(N % 10)
0