結果

問題 No.858 わり算
ユーザー StarMatyanStarMatyan
提出日時 2019-08-12 23:28:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 11,804 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2023-10-17 18:56:09
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

data_n = input()
data_s = data_n.split(" ")

first = int(data_s[0])
second = int(data_s[1])

result = first/second

print("{0:.50f}".format(result))
0