結果

問題 No.1464 Number Conversion
ユーザー nephrologistnephrologist
提出日時 2021-04-02 22:07:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 59,120 KB
最終ジャッジ日時 2024-06-06 06:58:22
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,548 KB
testcase_01 WA -
testcase_02 AC 38 ms
57,456 KB
testcase_03 AC 37 ms
52,532 KB
testcase_04 AC 38 ms
52,372 KB
testcase_05 AC 38 ms
52,956 KB
testcase_06 AC 35 ms
52,280 KB
testcase_07 AC 39 ms
58,780 KB
testcase_08 AC 38 ms
59,116 KB
testcase_09 AC 41 ms
58,576 KB
testcase_10 AC 38 ms
59,120 KB
testcase_11 AC 38 ms
57,640 KB
testcase_12 AC 35 ms
53,628 KB
testcase_13 AC 39 ms
58,900 KB
testcase_14 AC 40 ms
58,768 KB
testcase_15 AC 38 ms
57,892 KB
testcase_16 AC 38 ms
57,576 KB
testcase_17 AC 39 ms
58,520 KB
testcase_18 AC 43 ms
57,264 KB
testcase_19 AC 39 ms
58,028 KB
testcase_20 AC 39 ms
57,964 KB
testcase_21 AC 38 ms
52,196 KB
testcase_22 AC 78 ms
58,160 KB
testcase_23 AC 36 ms
53,228 KB
testcase_24 AC 76 ms
59,076 KB
testcase_25 AC 76 ms
58,516 KB
testcase_26 AC 78 ms
57,056 KB
testcase_27 AC 36 ms
52,132 KB
testcase_28 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = input()
if "." in x:
    a, b = x.split(".")
    bunshi = 0
    bunbo = 0
    bunshi = int(a) * pow(10, len(b)) + int(b)
    bunbo = pow(10, len(b))
else:
    print(x + "/1")
    exit()

# 素因数分解
def prime_factor(n):
    # (素因数, 数)のリストで出てくる
    d = {}
    for i in range(2, int(n ** 0.5) + 1):
        while n % i == 0:
            if i in d:
                d[i] += 1
            else:
                d[i] = 1
            n //= i
    if n != 1:
        if n in d:
            d[n] += 1
        else:
            d[n] = 1
    return d


a = prime_factor(bunbo)
b = prime_factor(bunshi)

for key in a.keys():
    if key in b:
        n1 = b[key]
        n2 = a[key]
        if n1 > n2:
            bunshi //= pow(key, n2)
            bunbo //= pow(key, n2)
        else:
            bunbo //= pow(key, n1)
            bunshi //= pow(key, n1)
print(f"{bunshi}/{bunbo}")
0