結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,732 KB
testcase_01 AC 43 ms
54,960 KB
testcase_02 AC 43 ms
54,148 KB
testcase_03 AC 41 ms
53,404 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
55,328 KB
testcase_07 AC 43 ms
54,412 KB
testcase_08 AC 44 ms
54,448 KB
testcase_09 AC 42 ms
54,332 KB
testcase_10 AC 42 ms
53,604 KB
testcase_11 AC 42 ms
53,672 KB
testcase_12 AC 42 ms
54,132 KB
testcase_13 AC 42 ms
54,848 KB
testcase_14 AC 42 ms
54,396 KB
testcase_15 AC 42 ms
53,944 KB
testcase_16 AC 41 ms
54,668 KB
testcase_17 AC 42 ms
54,480 KB
testcase_18 WA -
testcase_19 AC 42 ms
53,528 KB
testcase_20 AC 42 ms
54,808 KB
testcase_21 AC 43 ms
54,232 KB
testcase_22 WA -
testcase_23 AC 41 ms
55,128 KB
testcase_24 AC 42 ms
54,192 KB
testcase_25 WA -
testcase_26 AC 42 ms
55,128 KB
testcase_27 AC 41 ms
53,836 KB
testcase_28 AC 42 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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