結果

問題 No.1464 Number Conversion
ユーザー medchemmedchem
提出日時 2021-09-17 08:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-06-29 17:20:55
合計ジャッジ時間 4,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
79,900 KB
testcase_01 AC 113 ms
79,676 KB
testcase_02 AC 114 ms
79,856 KB
testcase_03 AC 118 ms
80,056 KB
testcase_04 AC 112 ms
80,128 KB
testcase_05 AC 109 ms
80,088 KB
testcase_06 AC 111 ms
80,128 KB
testcase_07 AC 114 ms
80,044 KB
testcase_08 AC 114 ms
79,936 KB
testcase_09 AC 109 ms
79,816 KB
testcase_10 AC 109 ms
80,160 KB
testcase_11 AC 111 ms
80,112 KB
testcase_12 AC 110 ms
80,012 KB
testcase_13 AC 116 ms
79,652 KB
testcase_14 AC 103 ms
80,256 KB
testcase_15 AC 112 ms
80,084 KB
testcase_16 AC 109 ms
79,740 KB
testcase_17 AC 104 ms
79,932 KB
testcase_18 AC 103 ms
80,056 KB
testcase_19 AC 108 ms
80,128 KB
testcase_20 AC 110 ms
80,000 KB
testcase_21 AC 108 ms
79,744 KB
testcase_22 AC 101 ms
80,128 KB
testcase_23 AC 106 ms
80,128 KB
testcase_24 AC 113 ms
80,024 KB
testcase_25 AC 110 ms
79,872 KB
testcase_26 AC 105 ms
80,016 KB
testcase_27 AC 111 ms
80,036 KB
testcase_28 AC 111 ms
79,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from decimal import Decimal

def lcm(a,b):
    lcm=a*b//math.gcd(a,b)
    return lcm

x=Decimal(input())
x*=10**8
x=int(x)

S=x
B=10**8

gcd=math.gcd(S,B)

print(str(S//gcd)+"/"+str(B//gcd))
0