結果
| 問題 | No.858 わり算 |
| コンテスト | |
| ユーザー |
anagohirame
|
| 提出日時 | 2019-08-09 21:43:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
MLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 167 bytes |
| 記録 | |
| コンパイル時間 | 344 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 1,675,732 KB |
| 最終ジャッジ日時 | 2026-04-02 16:25:15 |
| 合計ジャッジ時間 | 14,873 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | MLE * 2 |
| other | MLE * 9 |
ソースコード
from decimal import *
getcontext().prec = 1000000000
getcontext().rounding = ROUND_DOWN
a, b = map(int, input().split())
print("{:.50f}".format(Decimal(a)/Decimal(b)))
anagohirame