結果
| 問題 |
No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
|
| ユーザー |
|
| 提出日時 | 2022-01-24 23:33:36 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 247 bytes |
| コンパイル時間 | 6,779 ms |
| コンパイル使用メモリ | 166,532 KB |
| 実行使用メモリ | 191,620 KB |
| 最終ジャッジ日時 | 2024-12-15 03:23:49 |
| 合計ジャッジ時間 | 10,810 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 RE * 1 |
| other | AC * 9 RE * 6 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (83 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
var n = Console.ReadLine();
int[] v = Console.ReadLine().Split().Select(int.Parse).ToArray();
Console.WriteLine(v.Sum());
}
}