結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー itok217itok217
提出日時 2017-04-09 15:38:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 100,156 KB
実行使用メモリ 49,356 KB
最終ジャッジ日時 2023-09-25 01:22:00
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,752 KB
testcase_01 AC 59 ms
21,728 KB
testcase_02 AC 61 ms
21,720 KB
testcase_03 AC 60 ms
21,628 KB
testcase_04 AC 61 ms
21,948 KB
testcase_05 AC 61 ms
23,764 KB
testcase_06 AC 69 ms
22,012 KB
testcase_07 AC 75 ms
22,972 KB
testcase_08 AC 96 ms
29,464 KB
testcase_09 AC 99 ms
25,536 KB
testcase_10 AC 169 ms
41,724 KB
testcase_11 AC 172 ms
44,184 KB
testcase_12 AC 175 ms
44,192 KB
testcase_13 AC 177 ms
46,416 KB
testcase_14 AC 180 ms
44,484 KB
testcase_15 AC 181 ms
44,796 KB
testcase_16 AC 203 ms
49,356 KB
testcase_17 AC 61 ms
21,804 KB
testcase_18 AC 61 ms
21,736 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() {
      Console.ReadLine();
      Console.WriteLine(Console.ReadLine().Split().Select(long.Parse).Sum());
   }
}
0