結果

問題 No.926 休日の平均
ユーザー Shed0428Shed0428
提出日時 2019-12-22 13:04:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 66,800 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2023-10-12 05:06:08
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
24,692 KB
testcase_01 AC 65 ms
22,648 KB
testcase_02 AC 63 ms
22,636 KB
testcase_03 AC 65 ms
22,652 KB
testcase_04 AC 65 ms
22,672 KB
testcase_05 AC 66 ms
24,652 KB
testcase_06 AC 65 ms
22,696 KB
testcase_07 AC 65 ms
20,604 KB
testcase_08 AC 65 ms
22,640 KB
testcase_09 AC 67 ms
22,668 KB
testcase_10 AC 66 ms
22,596 KB
testcase_11 AC 65 ms
20,716 KB
testcase_12 AC 65 ms
22,668 KB
testcase_13 AC 66 ms
22,628 KB
testcase_14 AC 66 ms
22,592 KB
testcase_15 AC 66 ms
22,600 KB
testcase_16 AC 65 ms
20,620 KB
testcase_17 AC 66 ms
22,624 KB
testcase_18 AC 65 ms
22,576 KB
testcase_19 AC 62 ms
20,820 KB
testcase_20 AC 65 ms
24,740 KB
testcase_21 AC 65 ms
22,644 KB
testcase_22 AC 62 ms
20,676 KB
testcase_23 AC 62 ms
18,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
public class Hello{
    public static void Main(){
        string[] list = Console.ReadLine().Trim().Split(' ');
        double year = double.Parse(list[0]);
        double week = double.Parse(list[1]);
        double rest = double.Parse(list[2]);
        Console.WriteLine(year/week*rest);
    }
}
0