結果
| 問題 |
No.1464 Number Conversion
|
| コンテスト | |
| ユーザー |
wolgnik
|
| 提出日時 | 2021-04-02 23:09:42 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 168 ms / 2,000 ms |
| コード長 | 383 bytes |
| コンパイル時間 | 943 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 88,832 KB |
| 最終ジャッジ日時 | 2024-12-23 21:37:59 |
| 合計ジャッジ時間 | 6,519 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 |
ソースコード
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")
wolgnik