結果

問題 No.858 わり算
ユーザー seiyuseiyu
提出日時 2020-10-20 00:29:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-07-21 08:11:21
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 AC 108 ms
79,872 KB
testcase_03 RE -
testcase_04 WA -
testcase_05 AC 105 ms
79,872 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
getcontext().prec = 51
a,b =(x for x in input().split())
a = Decimal(a)
b = Decimal(b)

ans1 = str(a / b).split('.')[0]
ans2 = str(a / b).split('.')[1][0:50]

print(ans1 + '.' + ans2)





0