結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー TaK7907TaK7907
提出日時 2017-10-06 06:19:01
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 109,216 KB
実行使用メモリ 46,464 KB
最終ジャッジ日時 2024-11-17 00:19:32
合計ジャッジ時間 4,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,816 KB
testcase_01 AC 26 ms
18,688 KB
testcase_02 AC 26 ms
18,688 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 77 ms
25,472 KB
testcase_10 AC 175 ms
40,960 KB
testcase_11 AC 176 ms
41,088 KB
testcase_12 AC 177 ms
41,216 KB
testcase_13 AC 180 ms
41,472 KB
testcase_14 AC 184 ms
41,728 KB
testcase_15 AC 194 ms
41,984 KB
testcase_16 AC 216 ms
46,464 KB
testcase_17 AC 24 ms
18,048 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace ContestCSharp {
    class Program {
        static void Main(string[] args) {
            Console.ReadLine();
            string[] inputs=  Console.ReadLine().Split(' ');
            double ans=0;
            foreach (var i in inputs) { ans += Convert.ToDouble( i ); }
            Console.WriteLine(ans.ToString());
        }
    }
}
0