結果

問題 No.926 休日の平均
ユーザー curryudon08curryudon08
提出日時 2020-06-23 16:06:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 101,308 KB
実行使用メモリ 24,908 KB
最終ジャッジ日時 2023-09-16 19:57:40
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
22,872 KB
testcase_01 AC 66 ms
22,580 KB
testcase_02 AC 64 ms
20,828 KB
testcase_03 AC 66 ms
22,704 KB
testcase_04 AC 65 ms
22,708 KB
testcase_05 AC 65 ms
22,644 KB
testcase_06 AC 66 ms
24,824 KB
testcase_07 AC 67 ms
24,800 KB
testcase_08 AC 67 ms
20,712 KB
testcase_09 AC 67 ms
22,768 KB
testcase_10 AC 68 ms
24,908 KB
testcase_11 AC 67 ms
24,680 KB
testcase_12 AC 65 ms
22,872 KB
testcase_13 AC 65 ms
22,752 KB
testcase_14 AC 66 ms
22,700 KB
testcase_15 AC 64 ms
20,604 KB
testcase_16 AC 66 ms
22,756 KB
testcase_17 AC 66 ms
22,832 KB
testcase_18 AC 67 ms
22,784 KB
testcase_19 AC 63 ms
20,832 KB
testcase_20 AC 66 ms
20,748 KB
testcase_21 AC 66 ms
24,624 KB
testcase_22 AC 63 ms
20,792 KB
testcase_23 AC 63 ms
20,896 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 _0926
{
    class Program
    {
        static void Main(string[] args)
        {
            var _ = Console.ReadLine().Split();
            var a = double.Parse(_[0]);
            var b = double.Parse(_[1]);
            var c = double.Parse(_[2]);

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