結果
問題 | No.1464 Number Conversion |
ユーザー |
|
提出日時 | 2021-04-02 21:39:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 136 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-12-23 18:42:20 |
合計ジャッジ時間 | 2,770 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 RE * 23 |
ソースコード
from fractions import Fractionx = float(input())if x % 1 == 0:print(str(int(x)) + "/1")else:print(Fraction(float(input())))