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

ABC-069-A K-City

■■■問題■■■

K市には、東西方向にn本の通りがあり、南北方向にm本の通りがあります。
東西方向のそれぞれの通りは、南北方向のそれぞれの通りと交わっています。

東西南北を通りに囲まれた最小の領域を「街区」と呼びます。
K市にある街区の個数を求めてください。

■■■入力■■■

n m

●2 <= n,m <= 100

■■■出力■■■

K市にある街区の個数を出力せよ。

■■■サンプルケースのイメージ■■■

■入出力例1のイメージ■
次図の6個です。



■入出力例2のイメージ■
次図の1個です。



C#のソース

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

class Program
{
    static string InputPattern = "Input1";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("3 4");
            //6
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2 2");
            //1
        }
        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 n = wkArr[0];
        int m = wkArr[1];

        Console.WriteLine((n - 1) * (m - 1));
    }
}


解説

1引いた数同士を、掛け算してます。