結果

問題 No.858 わり算
ユーザー H20H20
提出日時 2021-06-16 09:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 80,200 KB
最終ジャッジ日時 2024-06-09 11:45:01
合計ジャッジ時間 1,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
80,028 KB
testcase_01 AC 114 ms
80,000 KB
testcase_02 AC 111 ms
80,200 KB
testcase_03 AC 105 ms
79,816 KB
testcase_04 AC 112 ms
80,052 KB
testcase_05 AC 118 ms
79,988 KB
testcase_06 AC 105 ms
80,128 KB
testcase_07 AC 106 ms
80,112 KB
testcase_08 AC 109 ms
79,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, getcontext, ROUND_DOWN
getcontext().prec = 1000
A,B = map(int,input().split())
A = Decimal(A)
B = Decimal(B)
kiri = '0.'+'0'*49+'1'
print('{:.50f}'.format(Decimal(A/B).quantize(Decimal(kiri),rounding=ROUND_DOWN)))
0