結果

問題 No.1464 Number Conversion
ユーザー marroncastlemarroncastle
提出日時 2021-04-02 22:32:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 80,100 KB
最終ジャッジ日時 2024-06-06 07:19:43
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
79,644 KB
testcase_01 AC 103 ms
80,056 KB
testcase_02 AC 104 ms
79,956 KB
testcase_03 AC 103 ms
80,008 KB
testcase_04 AC 104 ms
80,032 KB
testcase_05 AC 104 ms
79,828 KB
testcase_06 AC 103 ms
79,912 KB
testcase_07 AC 102 ms
79,768 KB
testcase_08 AC 100 ms
80,092 KB
testcase_09 AC 100 ms
79,996 KB
testcase_10 AC 101 ms
79,892 KB
testcase_11 AC 104 ms
79,776 KB
testcase_12 AC 103 ms
79,840 KB
testcase_13 AC 100 ms
80,040 KB
testcase_14 AC 101 ms
79,892 KB
testcase_15 AC 103 ms
79,828 KB
testcase_16 AC 100 ms
80,084 KB
testcase_17 AC 100 ms
79,940 KB
testcase_18 AC 101 ms
79,708 KB
testcase_19 AC 100 ms
80,100 KB
testcase_20 AC 106 ms
79,768 KB
testcase_21 AC 102 ms
79,916 KB
testcase_22 AC 104 ms
80,016 KB
testcase_23 AC 103 ms
79,720 KB
testcase_24 AC 104 ms
79,964 KB
testcase_25 AC 106 ms
80,084 KB
testcase_26 AC 103 ms
79,952 KB
testcase_27 AC 104 ms
79,912 KB
testcase_28 AC 105 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
X = int(Decimal(input())*10**8)
from math import gcd
g = gcd(X,10**8)
print(f'{X//g}/{10**8//g}')
0