結果

問題 No.353 ヘイトプラス
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-04-01 22:39:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 102,704 KB
実行使用メモリ 23,860 KB
最終ジャッジ日時 2023-09-12 00:00:39
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,692 KB
testcase_01 AC 59 ms
21,816 KB
testcase_02 AC 60 ms
21,900 KB
testcase_03 AC 62 ms
21,832 KB
testcase_04 AC 62 ms
21,728 KB
testcase_05 AC 61 ms
23,856 KB
testcase_06 AC 61 ms
23,860 KB
testcase_07 AC 60 ms
21,700 KB
testcase_08 AC 60 ms
23,816 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;
public class otaku{
static public void Main(){
  var v=Console.ReadLine().Split().Select(int.Parse).Sum();
  Console.WriteLine(v);
}
}
0