結果

問題 No.858 わり算
ユーザー むらためむらため
提出日時 2019-09-03 04:41:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 87,172 KB
実行使用メモリ 71,604 KB
最終ジャッジ日時 2023-08-23 12:44:27
合計ジャッジ時間 1,680 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,228 KB
testcase_01 AC 74 ms
70,824 KB
testcase_02 AC 74 ms
71,328 KB
testcase_03 AC 76 ms
71,068 KB
testcase_04 AC 74 ms
71,084 KB
testcase_05 WA -
testcase_06 AC 76 ms
71,032 KB
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
x = a * int(10**50) // b
print(str(a // b) + "." + str(x)[-50:])
0