100 #ABC123B. [ABC123B] Five Dishes

[ABC123B] Five Dishes

Score: 200200 points

Problem Statement

The restaurant AtCoder serves the following five dishes:

  • ABC Don (rice bowl): takes AA minutes to serve.
  • ARC Curry: takes BB minutes to serve.
  • AGC Pasta: takes CC minutes to serve.
  • APC Ramen: takes DD minutes to serve.
  • ATC Hanbagu (hamburger patty): takes EE minutes to serve.

Here, the time to serve a dish is the time between when an order is placed and when the dish is delivered.

This restaurant has the following rules on orders:

  • An order can only be placed at a time that is a multiple of 1010 (time 00, 1010, 2020, ......).
  • Only one dish can be ordered at a time.
  • No new order can be placed when an order is already placed and the dish is still not delivered, but a new order can be placed at the exact time when the dish is delivered.

E869120 arrives at this restaurant at time 00. He will order all five dishes. Find the earliest possible time for the last dish to be delivered. Here, he can order the dishes in any order he likes, and he can place an order already at time 00.

Constraints

  • A,B,C,DA, B, C, D and EE are integers between 11 and 123123 (inclusive).

Input

Input is given from Standard Input in the following format:

AA

BB

CC

DD

EE

Output

Print the earliest possible time for the last dish to be delivered, as an integer.

29
20
7
35
120
215

If we decide to order the dishes in the order ABC Don, ARC Curry, AGC Pasta, ATC Hanbagu, APC Ramen, the earliest possible time for each order is as follows:

  • Order ABC Don at time 00, which will be delivered at time 2929.
  • Order ARC Curry at time 3030, which will be delivered at time 5050.
  • Order AGC Pasta at time 5050, which will be delivered at time 5757.
  • Order ATC Hanbagu at time 6060, which will be delivered at time 180180.
  • Order APC Ramen at time 180180, which will be delivered at time 215215.

There is no way to order the dishes in which the last dish will be delivered earlier than this.

101
86
119
108
57
481

If we decide to order the dishes in the order AGC Pasta, ARC Curry, ATC Hanbagu, APC Ramen, ABC Don, the earliest possible time for each order is as follows:

  • Order AGC Pasta at time 00, which will be delivered at time 119119.
  • Order ARC Curry at time 120120, which will be delivered at time 206206.
  • Order ATC Hanbagu at time 210210, which will be delivered at time 267267.
  • Order APC Ramen at time 270270, which will be delivered at time 378378.
  • Order ABC Don at time 380380, which will be delivered at time 481481.

There is no way to order the dishes in which the last dish will be delivered earlier than this.

123
123
123
123
123
643

This is the largest valid case.