結果

問題 No.858 わり算
ユーザー pofpof
提出日時 2020-01-15 22:57:46
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
実行時間 -
コード長 186 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 10,524 KB
実行使用メモリ 8,992 KB
最終ジャッジ日時 2023-09-02 22:06:40
合計ジャッジ時間 1,357 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

from decimal import *
getcontext().prec= 51
a,b = map(int,input().split())
r = Decimal(a) / Decimal(7)
c = r.quantize(Decimal(str("0." +  "0"*49 + "1"))  , rounding=ROUND_FLOOR)
print(c)
0