結果

問題 No.353 ヘイトプラス
ユーザー arasabakiarasabaki
提出日時 2016-05-04 11:20:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 107,148 KB
実行使用メモリ 23,908 KB
最終ジャッジ日時 2023-09-12 00:32:49
合計ジャッジ時間 3,624 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
23,908 KB
testcase_01 AC 58 ms
21,856 KB
testcase_02 AC 59 ms
21,904 KB
testcase_03 AC 59 ms
21,876 KB
testcase_04 AC 59 ms
21,856 KB
testcase_05 AC 59 ms
21,940 KB
testcase_06 AC 59 ms
19,816 KB
testcase_07 AC 60 ms
23,816 KB
testcase_08 AC 59 ms
21,844 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;
using System.Collections.Generic;

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            var inputs = Console.ReadLine().Split(' ').Select(i => int.Parse(i));

            Console.WriteLine(inputs.ElementAt(0) - (-1 * inputs.ElementAt(1)));
        }
    }
}
0