結果

問題 No.1464 Number Conversion
ユーザー wolgnikwolgnik
提出日時 2021-04-02 21:44:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-06-06 06:35:08
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,192 KB
testcase_01 WA -
testcase_02 AC 138 ms
88,320 KB
testcase_03 AC 133 ms
87,936 KB
testcase_04 AC 136 ms
88,192 KB
testcase_05 AC 138 ms
88,064 KB
testcase_06 AC 137 ms
87,936 KB
testcase_07 AC 137 ms
88,576 KB
testcase_08 AC 136 ms
88,448 KB
testcase_09 AC 136 ms
88,576 KB
testcase_10 AC 134 ms
88,320 KB
testcase_11 AC 139 ms
88,320 KB
testcase_12 AC 137 ms
88,320 KB
testcase_13 AC 136 ms
88,320 KB
testcase_14 AC 136 ms
88,320 KB
testcase_15 AC 137 ms
88,576 KB
testcase_16 AC 135 ms
88,320 KB
testcase_17 AC 136 ms
88,320 KB
testcase_18 AC 138 ms
88,320 KB
testcase_19 AC 139 ms
88,320 KB
testcase_20 AC 139 ms
88,320 KB
testcase_21 AC 138 ms
88,320 KB
testcase_22 AC 138 ms
88,064 KB
testcase_23 AC 134 ms
88,448 KB
testcase_24 WA -
testcase_25 AC 138 ms
88,320 KB
testcase_26 AC 139 ms
88,576 KB
testcase_27 AC 139 ms
88,576 KB
testcase_28 AC 137 ms
87,936 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
if "." in X: print(Fraction(multiple_ten(X, d)) / Fraction(10 ** d))
else: print(X + "/" + "1")
0