結果

問題 No.858 わり算
ユーザー curryudon08curryudon08
提出日時 2020-06-30 15:30:48
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 111,404 KB
実行使用メモリ 29,388 KB
最終ジャッジ日時 2024-07-23 19:03:12
合計ジャッジ時間 1,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
27,476 KB
testcase_02 WA -
testcase_03 AC 32 ms
24,948 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 31 ms
25,260 KB
testcase_07 WA -
testcase_08 AC 33 ms
26,832 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