結果

問題 No.858 わり算
ユーザー curryudon08
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 3 WA * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
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