結果

問題 No.1464 Number Conversion
ユーザー roarisroaris
提出日時 2021-04-02 21:34:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 55,376 KB
最終ジャッジ日時 2024-06-06 06:19:45
合計ジャッジ時間 2,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 41 ms
53,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 42 ms
53,632 KB
testcase_10 WA -
testcase_11 AC 42 ms
53,504 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 43 ms
53,632 KB
testcase_18 WA -
testcase_19 AC 42 ms
53,888 KB
testcase_20 WA -
testcase_21 AC 42 ms
53,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 43 ms
53,632 KB
testcase_28 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from math import gcd

X = float(input())
X *= 10**18
X = int(X)
G = gcd(X, 10**18)
print(str(X//G)+'/'+str(10**18//G))
0