結果

問題 No.858 わり算
ユーザー pofpof
提出日時 2020-01-15 22:57:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 186 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-12 04:20:41
合計ジャッジ時間 1,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 AC 28 ms
11,136 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