

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
縦 行、横 列のマス目があり、このうち上から 個目、左から 個目のマスを と呼びます。
このとき、マス に辺で隣接するマスの個数を求めてください。
ただし、ある つのマス が辺で隣接するとは、 ( を の絶対値とする) であることを言います。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを整数として出力せよ。
入力例 1Copy
3 4 2 2
出力例 1Copy
4
入出力例 に対する説明は、出力例 の下にまとめて示します。
入力例 2Copy
3 4 1 3
出力例 2Copy
3
入力例 3Copy
3 4 3 4
出力例 3Copy
2
のとき、マス目は以下のようになります。
- 入力例 について、マス に隣接するマスは つです。
- 入力例 について、マス に隣接するマスは つです。
- 入力例 について、マス に隣接するマスは つです。
入力例 4Copy
1 10 1 5
出力例 4Copy
2
入力例 5Copy
8 1 8 1
出力例 5Copy
1
入力例 6Copy
1 1 1 1
出力例 6Copy
0
Score : points
Problem Statement
There is a grid with horizontal rows and vertical columns. Let denote the square at the -th row from the top and the -th column from the left.
Find the number of squares that share a side with Square .
Here, two squares and are said to share a side if and only if (where denotes the absolute value of ).
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1Copy
3 4 2 2
Sample Output 1Copy
4
We will describe Sample Inputs/Outputs , and at once below Sample Output .
Sample Input 2Copy
3 4 1 3
Sample Output 2Copy
3
Sample Input 3Copy
3 4 3 4
Sample Output 3Copy
2
When and , the grid looks as follows.
- For Sample Input , there are squares adjacent to Square .
- For Sample Input , there are squares adjacent to Square .
- For Sample Input , there are squares adjacent to Square .
Sample Input 4Copy
1 10 1 5
Sample Output 4Copy
2
Sample Input 5Copy
8 1 8 1
Sample Output 5Copy
1
Sample Input 6Copy
1 1 1 1
Sample Output 6Copy
0