結果

問題 No.3062 A + B
ユーザー matamatajupitermatamatajupiter
提出日時 2020-04-01 22:27:36
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 104,572 KB
実行使用メモリ 25,860 KB
最終ジャッジ日時 2023-09-09 19:03:21
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 67 ms
23,604 KB
testcase_04 AC 67 ms
23,852 KB
testcase_05 WA -
testcase_06 AC 66 ms
23,536 KB
testcase_07 WA -
testcase_08 AC 66 ms
23,532 KB
testcase_09 AC 63 ms
21,668 KB
testcase_10 AC 65 ms
21,736 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.Collections.Generic;
using System.Linq;

class Progaram
{
    static void Main(string[] args)
    {
        Console.WriteLine(Console.ReadLine().Split(' ').Select(x => double.Parse(x)).Sum());
    }
}
0