CF90A.Cableway

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A group of university students wants to get to the top of a mountain to have a picnic there. For that they decided to use a cableway.

A cableway is represented by some cablecars, hanged onto some cable stations by a cable. A cable is scrolled cyclically between the first and the last cable stations (the first of them is located at the bottom of the mountain and the last one is located at the top). As the cable moves, the cablecar attached to it move as well.

The number of cablecars is divisible by three and they are painted three colors: red, green and blue, in such manner that after each red cablecar goes a green one, after each green cablecar goes a blue one and after each blue cablecar goes a red one. Each cablecar can transport no more than two people, the cablecars arrive with the periodicity of one minute (i. e. every minute) and it takes exactly 3030 minutes for a cablecar to get to the top.

All students are divided into three groups: rr of them like to ascend only in the red cablecars, gg of them prefer only the green ones and bb of them prefer only the blue ones. A student never gets on a cablecar painted a color that he doesn't like,

The first cablecar to arrive (at the moment of time 00 ) is painted red. Determine the least time it will take all students to ascend to the mountain top.

输入格式

The first line contains three integers rr , gg and bb ( 0<=r,g,b<=1000<=r,g,b<=100 ). It is guaranteed that r+g+b>0r+g+b>0 , it means that the group consists of at least one student.

输出格式

Print a single number — the minimal time the students need for the whole group to ascend to the top of the mountain.

输入输出样例

  • 输入#1

    1 3 2
    

    输出#1

    34
  • 输入#2

    3 2 1
    

    输出#2

    33

说明/提示

Let's analyze the first sample.

At the moment of time 00 a red cablecar comes and one student from the rr group get on it and ascends to the top at the moment of time 3030 .

At the moment of time 11 a green cablecar arrives and two students from the gg group get on it; they get to the top at the moment of time 3131 .

At the moment of time 22 comes the blue cablecar and two students from the bb group get on it. They ascend to the top at the moment of time 3232 .

At the moment of time 33 a red cablecar arrives but the only student who is left doesn't like red and the cablecar leaves empty.

At the moment of time 44 a green cablecar arrives and one student from the gg group gets on it. He ascends to top at the moment of time 3434 .

Thus, all the students are on the top, overall the ascension took exactly 3434 minutes.

首页