結果

問題 No.25 有限小数
ユーザー Mao-betaMao-beta
提出日時 2024-02-29 14:33:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 58,060 KB
最終ジャッジ日時 2024-09-29 12:42:27
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,960 KB
testcase_01 AC 47 ms
55,644 KB
testcase_02 AC 43 ms
56,404 KB
testcase_03 AC 44 ms
56,224 KB
testcase_04 AC 43 ms
57,516 KB
testcase_05 AC 43 ms
57,148 KB
testcase_06 AC 43 ms
57,336 KB
testcase_07 AC 46 ms
57,072 KB
testcase_08 AC 44 ms
56,168 KB
testcase_09 AC 44 ms
56,472 KB
testcase_10 AC 44 ms
56,624 KB
testcase_11 AC 45 ms
56,748 KB
testcase_12 AC 47 ms
56,364 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 45 ms
56,464 KB
testcase_16 WA -
testcase_17 AC 45 ms
56,648 KB
testcase_18 WA -
testcase_19 AC 44 ms
55,640 KB
testcase_20 AC 43 ms
56,052 KB
testcase_21 AC 42 ms
55,976 KB
testcase_22 AC 43 ms
56,900 KB
testcase_23 AC 42 ms
56,624 KB
testcase_24 AC 43 ms
56,216 KB
testcase_25 AC 42 ms
56,848 KB
testcase_26 AC 42 ms
55,776 KB
testcase_27 AC 43 ms
55,848 KB
testcase_28 AC 44 ms
57,316 KB
testcase_29 AC 44 ms
56,088 KB
testcase_30 AC 44 ms
56,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    M = NI()
    g = math.gcd(N, M)
    N, M = N//g, M//g
    m = M
    while m % 2 == 0:
        m //= 2
    while m % 5 == 0:
        m //= 5
    if m > 1:
        print(-1)
        return
    x = str(N * 10**30 // M)[::-1]
    for s in x:
        if s != "0":
            print(s)
            return


if __name__ == "__main__":
    main()
0