結果

問題 No.858 わり算
ユーザー SchneeSchnee
提出日時 2019-10-20 16:47:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 440 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-01-05 14:36:54
合計ジャッジ時間 1,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from decimal import *
num1, num2 = input().strip().split()

int_num = int(num1) // int(num2)
int_len = len(str(int(num1) // int(num2)))
getcontext().prec = 52 + int_len

num_str = '{:f}'.format(Decimal(num1) / Decimal(num2))
length = len(num_str)

if length == int_len:
    print(num_str + "." + "0" * 50)
elif length - int_len < 51:
    print(num_str + "0" * (51 + int_len - length))
else:
    print(num_str[:-2 - (length - int_len - 53)])
0