結果

問題 No.858 わり算
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-30 14:23:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 189 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2025-01-07 14:52:14
合計ジャッジ時間 955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.858 わり算
from decimal import *

a, b = [int(s) for s in input().split()]

getcontext().prec = 55
quotient = '{:.55f}'.format(Decimal(Decimal(a) / Decimal(b)))
print(quotient[:-5])
0