410355: GYM104012 A Absolutely Flat

Memory Limit:512 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A. Absolutely Flattime limit per test2 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard output

Alice is a proud owner of a four-legged table, and she wants her table to be flat. Alice considers the table to be flat if its four legs have equal lengths.

Alice measured the table's current leg lengths and got $$$a_1, a_2, a_3$$$, and $$$a_4$$$. She also has a pad of length $$$b$$$. Alice can attach the pad to one of the legs, in which case the length of that leg will increase by $$$b$$$. She can also decide not to attach the pad, in which case the lengths of the legs will not change. Note that Alice has just a single pad, so she can neither apply it twice to the same leg nor apply it to two different legs.

Find out whether Alice can make her table flat.

Input

The input contains five positive integers $$$a_1, a_2, a_3, a_4$$$, and $$$b$$$, each on a separate line — the lengths of the table's legs, and the length of the pad Alice has ($$$1 \le a_i, b \le 100$$$).

Output

Print $$$1$$$ if Alice can make her table flat, and $$$0$$$ otherwise.

ExamplesInput
10
10
10
10
5
Output
1
Input
13
13
5
13
8
Output
1
Input
50
42
42
50
8
Output
0
Input
20
40
10
30
2
Output
0
Note

In the first example test, the table is already flat, no pad is needed.

In the second example test, Alice can apply the pad to the third leg to make the table flat.

In the third and the fourth example tests, Alice can not make her table flat.

加入题单

上一题 下一题 算法标签: