結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー くれちーくれちー
提出日時 2017-03-25 18:41:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 112,560 KB
実行使用メモリ 51,760 KB
最終ジャッジ日時 2024-07-06 06:06:24
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
26,888 KB
testcase_01 AC 22 ms
25,116 KB
testcase_02 AC 21 ms
25,116 KB
testcase_03 AC 21 ms
25,132 KB
testcase_04 AC 22 ms
27,144 KB
testcase_05 AC 23 ms
25,264 KB
testcase_06 AC 26 ms
25,388 KB
testcase_07 AC 35 ms
26,400 KB
testcase_08 AC 54 ms
30,484 KB
testcase_09 AC 54 ms
32,552 KB
testcase_10 AC 118 ms
45,132 KB
testcase_11 AC 122 ms
49,548 KB
testcase_12 AC 121 ms
51,760 KB
testcase_13 AC 123 ms
50,064 KB
testcase_14 AC 149 ms
50,212 KB
testcase_15 AC 125 ms
50,208 KB
testcase_16 AC 144 ms
50,924 KB
testcase_17 AC 23 ms
27,272 KB
testcase_18 AC 23 ms
25,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(long.Parse);

        Console.WriteLine(a.Sum());
    }
}
0