結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kmtrc130kmtrc130
提出日時 2017-06-07 14:00:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 106,196 KB
実行使用メモリ 51,652 KB
最終ジャッジ日時 2023-10-23 18:57:15
合計ジャッジ時間 3,974 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,344 KB
testcase_01 AC 26 ms
24,344 KB
testcase_02 AC 26 ms
24,344 KB
testcase_03 AC 27 ms
24,344 KB
testcase_04 AC 26 ms
24,344 KB
testcase_05 AC 26 ms
24,332 KB
testcase_06 AC 31 ms
24,648 KB
testcase_07 AC 38 ms
25,500 KB
testcase_08 AC 67 ms
29,536 KB
testcase_09 AC 75 ms
29,588 KB
testcase_10 AC 174 ms
45,936 KB
testcase_11 AC 177 ms
46,140 KB
testcase_12 AC 180 ms
46,328 KB
testcase_13 AC 184 ms
46,528 KB
testcase_14 AC 188 ms
46,720 KB
testcase_15 AC 190 ms
46,924 KB
testcase_16 AC 221 ms
51,652 KB
testcase_17 AC 26 ms
24,344 KB
testcase_18 AC 26 ms
24,344 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