結果
| 問題 | No.1464 Number Conversion |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-02 23:35:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 226 bytes |
| 記録 | |
| コンパイル時間 | 613 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,612 KB |
| 最終ジャッジ日時 | 2026-05-29 20:41:28 |
| 合計ジャッジ時間 | 12,251 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 23 |
ソースコード
from fractions import Fraction
x = input()
if '.' in x:
t = x.index('.')
if float(x).is_integer():
print(x[:t] + '/1')
elif float(x).is_integer():
print(x + '/1')
else:
ans = Fraction(x)
print(ans)