トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

No.353 ヘイトプラス

■■■問題■■■

A+Bを計算します。

しかし、'+'が嫌いなので'+'を使ってはいけません。
ソースコード上に'+'の文字があると不正解になります。

■■■入力■■■

A B

1行にAとBが空白区切りで与えられる。
0 <= A,B <= 10億

■■■出力■■■

1行にA+Bの結果を出力してください。


C#のソース

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("1 2");
            //3
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("765 346");
            //1111
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray();
        int A = wkArr[0];
        int B = wkArr[1];
        Console.WriteLine(A - (-B));
    }
}


解説

A+B = A-(-B)
といった変形をしてます。