結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー p_nixp_nix
提出日時 2018-01-23 16:15:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 197 ms / 3,000 ms
コード長 396 bytes
コンパイル時間 1,273 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-12-26 02:59:54
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
18,304 KB
testcase_01 AC 29 ms
18,304 KB
testcase_02 AC 27 ms
18,304 KB
testcase_03 AC 27 ms
18,176 KB
testcase_04 AC 28 ms
18,304 KB
testcase_05 AC 29 ms
18,176 KB
testcase_06 AC 30 ms
18,304 KB
testcase_07 AC 34 ms
18,944 KB
testcase_08 AC 57 ms
21,008 KB
testcase_09 AC 76 ms
22,416 KB
testcase_10 AC 175 ms
24,704 KB
testcase_11 AC 178 ms
24,704 KB
testcase_12 AC 174 ms
24,704 KB
testcase_13 AC 182 ms
24,960 KB
testcase_14 AC 176 ms
24,832 KB
testcase_15 AC 189 ms
24,960 KB
testcase_16 AC 197 ms
25,600 KB
testcase_17 AC 27 ms
18,304 KB
testcase_18 AC 28 ms
18,176 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;

namespace prob9009
{
    class Program
    {
        static void Main(string[] args)
        {
            int c = int.Parse(Console.ReadLine());
            long[] a = new long[c];
            for (int i = 0; i < c; i++)
            {
                a[i] = long.Parse(Console.ReadLine());
            }
            Console.WriteLine(a.Sum());
        }
    }
}
0