結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 68 ms
21,496 KB
testcase_04 AC 67 ms
25,760 KB
testcase_05 WA -
testcase_06 AC 67 ms
23,688 KB
testcase_07 WA -
testcase_08 AC 67 ms
21,728 KB
testcase_09 AC 64 ms
21,792 KB
testcase_10 AC 66 ms
23,780 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