結果

問題 No.560 ふしぎなナップサック
ユーザー NoNo
提出日時 2018-01-27 02:16:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 103,960 KB
実行使用メモリ 24,700 KB
最終ジャッジ日時 2023-08-27 20:35:55
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
22,652 KB
testcase_01 AC 62 ms
22,796 KB
testcase_02 AC 64 ms
24,700 KB
testcase_03 AC 62 ms
20,800 KB
testcase_04 AC 63 ms
22,720 KB
testcase_05 AC 64 ms
22,676 KB
testcase_06 AC 64 ms
24,696 KB
testcase_07 AC 63 ms
22,692 KB
testcase_08 AC 63 ms
22,608 KB
testcase_09 AC 63 ms
24,648 KB
testcase_10 AC 63 ms
22,600 KB
testcase_11 AC 63 ms
22,660 KB
testcase_12 AC 62 ms
22,592 KB
testcase_13 AC 62 ms
22,800 KB
testcase_14 AC 63 ms
22,692 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 y
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] ss =  Console.ReadLine().Split();
            double m = double.Parse(ss[0]);
            double n = int.Parse(ss[1]);
            Console.WriteLine(m + n / 3);
        }
    }
}
0