結果

問題 No.1464 Number Conversion
ユーザー rodearodea
提出日時 2021-04-09 15:40:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2024-06-24 22:27:54
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,744 KB
testcase_01 AC 38 ms
53,712 KB
testcase_02 AC 39 ms
53,420 KB
testcase_03 AC 38 ms
52,400 KB
testcase_04 AC 37 ms
52,888 KB
testcase_05 AC 39 ms
52,472 KB
testcase_06 AC 39 ms
53,604 KB
testcase_07 AC 38 ms
52,144 KB
testcase_08 AC 38 ms
52,716 KB
testcase_09 AC 40 ms
52,468 KB
testcase_10 AC 39 ms
53,608 KB
testcase_11 AC 38 ms
52,500 KB
testcase_12 AC 39 ms
53,540 KB
testcase_13 AC 39 ms
53,620 KB
testcase_14 AC 38 ms
52,448 KB
testcase_15 AC 39 ms
53,208 KB
testcase_16 AC 38 ms
52,148 KB
testcase_17 AC 39 ms
53,352 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 39 ms
52,932 KB
testcase_20 AC 38 ms
52,504 KB
testcase_21 AC 38 ms
52,884 KB
testcase_22 AC 38 ms
52,940 KB
testcase_23 AC 39 ms
52,812 KB
testcase_24 AC 39 ms
52,196 KB
testcase_25 AC 39 ms
53,160 KB
testcase_26 AC 38 ms
53,672 KB
testcase_27 AC 39 ms
52,680 KB
testcase_28 AC 39 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

x = input()

if not '.' in x:
    print(x + '/1')
    exit()

p = x.find('.')
h = x[:p]
t = x[p + 1:]
num = int(h + t)
den = 10 ** len(t)
g = math.gcd(num, den)
num //= g
den //= g

print(str(num) + '/' + str(den))
0