結果

問題 No.858 わり算
ユーザー pluto77pluto77
提出日時 2019-08-10 11:09:02
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 9,044 KB
最終ジャッジ日時 2023-09-26 23:15:44
合計ジャッジ時間 1,202 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 21 ms
9,044 KB
testcase_02 AC 21 ms
8,860 KB
testcase_03 AC 21 ms
8,872 KB
testcase_04 WA -
testcase_05 AC 21 ms
8,884 KB
testcase_06 AC 21 ms
9,028 KB
testcase_07 AC 21 ms
9,032 KB
testcase_08 AC 20 ms
8,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki858
from decimal import *

a,b=map(int,input().split())
getcontext().prec=50
x=Decimal(a)
y=Decimal(b)
getcontext().rounding=ROUND_DOWN
z=x/y
print(f'{z:.50f}')
0