結果
| 問題 |
No.1464 Number Conversion
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-02 23:36:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 2,000 ms |
| コード長 | 281 bytes |
| コンパイル時間 | 135 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,520 KB |
| 最終ジャッジ日時 | 2024-12-23 22:33:05 |
| 合計ジャッジ時間 | 2,335 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 |
ソースコード
from fractions import Fraction
x = input()
if '.' in x:
t = x.index('.')
if float(x).is_integer():
print(x[:t] + '/1')
else:
ans = Fraction(x)
print(ans)
elif float(x).is_integer():
print(x + '/1')
else:
ans = Fraction(x)
print(ans)