結果

問題 No.858 わり算
ユーザー pypypymipypypymi
提出日時 2022-02-26 12:29:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 59 bytes
コンパイル時間 1,437 ms
コンパイル使用メモリ 86,672 KB
実行使用メモリ 71,416 KB
最終ジャッジ日時 2023-09-17 12:53:53
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a,b = map(int,input().split())
print("{:.50f}".format(a/b))
0