結果

問題 No.222 引き算と足し算
ユーザー Masahiro HayashiMasahiro Hayashi
提出日時 2015-06-06 01:16:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 1,100 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 113,864 KB
実行使用メモリ 30,672 KB
最終ジャッジ日時 2024-11-15 21:30:10
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
28,636 KB
testcase_01 AC 64 ms
28,508 KB
testcase_02 AC 66 ms
28,376 KB
testcase_03 AC 66 ms
28,336 KB
testcase_04 AC 66 ms
26,424 KB
testcase_05 AC 66 ms
30,412 KB
testcase_06 AC 67 ms
28,468 KB
testcase_07 AC 65 ms
30,540 KB
testcase_08 AC 66 ms
28,620 KB
testcase_09 AC 65 ms
28,336 KB
testcase_10 AC 65 ms
28,464 KB
testcase_11 AC 66 ms
30,408 KB
testcase_12 AC 66 ms
28,364 KB
testcase_13 AC 66 ms
26,548 KB
testcase_14 AC 67 ms
30,548 KB
testcase_15 AC 65 ms
28,632 KB
testcase_16 AC 65 ms
30,544 KB
testcase_17 AC 65 ms
28,252 KB
testcase_18 AC 65 ms
28,632 KB
testcase_19 AC 65 ms
30,548 KB
testcase_20 AC 65 ms
28,504 KB
testcase_21 AC 64 ms
28,484 KB
testcase_22 AC 65 ms
30,544 KB
testcase_23 AC 67 ms
30,552 KB
testcase_24 AC 65 ms
30,540 KB
testcase_25 AC 67 ms
28,356 KB
testcase_26 AC 66 ms
26,420 KB
testcase_27 AC 66 ms
28,512 KB
testcase_28 AC 64 ms
28,372 KB
testcase_29 AC 64 ms
30,672 KB
testcase_30 AC 64 ms
30,540 KB
testcase_31 AC 65 ms
26,676 KB
testcase_32 AC 65 ms
28,372 KB
testcase_33 AC 65 ms
28,628 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;
using System.Text;
using System.Text.RegularExpressions;

namespace Application
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            new MainClass().Calc();
        }

        public MainClass() { }

        public void Calc()
        {
            var r = Console.ReadLine();

            var m = Regex.Match(r, "^([-+]?[0-9]+)([-+])([-+]?[0-9]+)");

            var A = int.Parse(m.Groups[1].Value);
            var op = m.Groups[2].Value;
            var B = int.Parse(m.Groups[3].Value);

            if (op == "+")
                Console.WriteLine(A - B);
            else
                Console.WriteLine(A + B);
        }

        void WriteLine(object o)
        {
            System.Console.WriteLine(o.ToString());
        }

        void WriteEnum<T>(IEnumerable<T> l)
        {
            WriteLine(JoinList(l));
        }

        string JoinList<T>(IEnumerable<T> l)
        {
            return string.Join(" ", l.Select(x => x.ToString()).ToArray());
        }
    }

}
0