結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kmtrc130kmtrc130
提出日時 2017-06-07 14:00:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 107,636 KB
実行使用メモリ 51,900 KB
最終ジャッジ日時 2024-09-22 12:43:23
合計ジャッジ時間 4,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,156 KB
testcase_01 AC 26 ms
22,068 KB
testcase_02 AC 26 ms
26,044 KB
testcase_03 AC 26 ms
24,160 KB
testcase_04 AC 25 ms
24,000 KB
testcase_05 AC 26 ms
24,132 KB
testcase_06 AC 31 ms
22,836 KB
testcase_07 AC 37 ms
23,604 KB
testcase_08 AC 66 ms
29,648 KB
testcase_09 AC 74 ms
29,452 KB
testcase_10 AC 172 ms
45,980 KB
testcase_11 AC 176 ms
46,564 KB
testcase_12 AC 179 ms
46,732 KB
testcase_13 AC 183 ms
45,036 KB
testcase_14 AC 187 ms
49,260 KB
testcase_15 AC 189 ms
49,392 KB
testcase_16 AC 217 ms
51,900 KB
testcase_17 AC 26 ms
24,160 KB
testcase_18 AC 26 ms
26,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());
        string[] A = Console.ReadLine().Split(' ');

        decimal sum = 0;
        for (int i = 0; i < N; i++)
        {
            sum += decimal.Parse(A[i]);
        }
        Console.WriteLine(sum);
    }
}
0