結果

問題 No.1464 Number Conversion
ユーザー wolgnik
提出日時 2021-04-02 21:44:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-12-23 18:54:45
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 2
権限があれば一括ダウンロードができます

ソースコード

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
if "." in X: print(Fraction(multiple_ten(X, d)) / Fraction(10 ** d))
else: print(X + "/" + "1")
0