結果

問題 No.1464 Number Conversion
ユーザー dangodango
提出日時 2023-06-28 18:48:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-07-05 12:06:39
合計ジャッジ時間 2,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,008 KB
testcase_01 AC 33 ms
53,484 KB
testcase_02 AC 36 ms
53,008 KB
testcase_03 AC 32 ms
52,492 KB
testcase_04 AC 33 ms
53,152 KB
testcase_05 AC 32 ms
52,888 KB
testcase_06 AC 31 ms
53,340 KB
testcase_07 AC 32 ms
52,004 KB
testcase_08 AC 31 ms
53,076 KB
testcase_09 AC 33 ms
54,084 KB
testcase_10 AC 34 ms
52,532 KB
testcase_11 AC 32 ms
52,864 KB
testcase_12 AC 31 ms
52,864 KB
testcase_13 AC 33 ms
53,256 KB
testcase_14 AC 35 ms
52,000 KB
testcase_15 AC 33 ms
52,528 KB
testcase_16 AC 32 ms
52,724 KB
testcase_17 AC 31 ms
53,272 KB
testcase_18 AC 32 ms
52,144 KB
testcase_19 AC 31 ms
53,140 KB
testcase_20 AC 31 ms
52,592 KB
testcase_21 AC 31 ms
52,316 KB
testcase_22 AC 31 ms
52,192 KB
testcase_23 AC 33 ms
53,552 KB
testcase_24 AC 33 ms
53,132 KB
testcase_25 AC 33 ms
53,216 KB
testcase_26 AC 32 ms
53,080 KB
testcase_27 AC 32 ms
52,064 KB
testcase_28 AC 32 ms
53,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = input()
if n.find(".") == -1:
  print(f"{n}/1")
else:
  a, b = int(n.replace('.', '')), 10 ** len(n.split(".")[1].replace('.', ''))
  print(f"{a // gcd(a, b)}/{b // gcd(a, b)}")
0