結果

問題 No.1464 Number Conversion
ユーザー wolgnikwolgnik
提出日時 2021-04-02 23:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 88,816 KB
最終ジャッジ日時 2024-06-06 08:05:10
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
88,356 KB
testcase_01 AC 133 ms
88,392 KB
testcase_02 AC 134 ms
88,540 KB
testcase_03 AC 132 ms
88,536 KB
testcase_04 AC 132 ms
88,564 KB
testcase_05 AC 130 ms
88,208 KB
testcase_06 AC 131 ms
88,644 KB
testcase_07 AC 131 ms
88,596 KB
testcase_08 AC 131 ms
88,608 KB
testcase_09 AC 132 ms
88,480 KB
testcase_10 AC 129 ms
88,652 KB
testcase_11 AC 130 ms
88,636 KB
testcase_12 AC 127 ms
88,776 KB
testcase_13 AC 129 ms
88,160 KB
testcase_14 AC 127 ms
88,276 KB
testcase_15 AC 128 ms
88,596 KB
testcase_16 AC 130 ms
88,576 KB
testcase_17 AC 130 ms
88,568 KB
testcase_18 AC 128 ms
88,816 KB
testcase_19 AC 128 ms
88,584 KB
testcase_20 AC 125 ms
88,692 KB
testcase_21 AC 128 ms
88,564 KB
testcase_22 AC 128 ms
88,652 KB
testcase_23 AC 128 ms
88,720 KB
testcase_24 AC 127 ms
88,292 KB
testcase_25 AC 126 ms
88,736 KB
testcase_26 AC 125 ms
88,748 KB
testcase_27 AC 126 ms
88,708 KB
testcase_28 AC 127 ms
88,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from fractions import *
input = sys.stdin.readline
def multiple_ten(s, d):
  # float with error -> int without error
  if not "." in s: return int(s) * 10 ** d
  x, r = s.split(".")
  return int(x) * 10 ** d + int(r) * 10 ** (d - len(r))

X = input()[: -1]
d = 8
res = str(Fraction(multiple_ten(X, d)) / Fraction(10 ** d))
if "/" in res: print(res)
else: print(res + "/1")
0