結果
| 問題 |
No.1464 Number Conversion
|
| コンテスト | |
| ユーザー |
wolgnik
|
| 提出日時 | 2021-04-02 23:09:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 383 bytes |
| コンパイル時間 | 1,070 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 88,576 KB |
| 最終ジャッジ日時 | 2024-12-23 21:35:02 |
| 合計ジャッジ時間 | 6,218 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 23 |
ソースコード
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