結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー iwkjoseciwkjosec
提出日時 2018-02-22 03:26:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 3,888 ms
コンパイル使用メモリ 104,300 KB
実行使用メモリ 46,576 KB
最終ジャッジ日時 2023-10-22 00:36:58
合計ジャッジ時間 4,738 ms
ジャッジサーバーID
(参考情報)
judge15 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
19,096 KB
testcase_01 AC 26 ms
19,100 KB
testcase_02 AC 26 ms
19,100 KB
testcase_03 AC 27 ms
19,100 KB
testcase_04 AC 26 ms
19,096 KB
testcase_05 AC 27 ms
19,108 KB
testcase_06 AC 32 ms
19,620 KB
testcase_07 AC 36 ms
20,972 KB
testcase_08 AC 59 ms
25,000 KB
testcase_09 AC 63 ms
25,544 KB
testcase_10 AC 138 ms
40,856 KB
testcase_11 AC 139 ms
41,060 KB
testcase_12 AC 143 ms
41,252 KB
testcase_13 AC 145 ms
41,452 KB
testcase_14 AC 147 ms
41,644 KB
testcase_15 AC 149 ms
41,848 KB
testcase_16 AC 173 ms
46,576 KB
testcase_17 AC 26 ms
19,096 KB
testcase_18 AC 26 ms
19,100 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.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        ReadLine();
        WriteLine(ReadLine().Split().Select(long.Parse).Sum());
    }
}
0