結果

問題 No.858 わり算
ユーザー curryudon08curryudon08
提出日時 2020-06-30 15:30:48
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 3,514 ms
コンパイル使用メモリ 98,448 KB
実行使用メモリ 27,160 KB
最終ジャッジ日時 2023-10-01 01:28:47
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 73 ms
22,848 KB
testcase_02 WA -
testcase_03 AC 74 ms
22,900 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 75 ms
24,896 KB
testcase_07 WA -
testcase_08 AC 76 ms
22,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _0858
{
    class Program
    {
        static void Main(string[] args)
        {
            var _ = Console.ReadLine().Split();
            var a = double.Parse(_[0]);
            var b = double.Parse(_[1]);

            var x = a / b;
            Console.WriteLine(string.Format("{0:F50}",x));
        }
    }
}
0