3027.Table Decorations

Time Limit: 1s Memory Limit: 256MB

You have r red, g green and b blue balloons. To decorate a single table for the banquet you need exactly three balloons. Three balloons attached to some table shouldn't have the same color. What maximum number t of tables can be decorated if we know number of balloons of each color?

Your task is to write a program that for given values r, g and b will find the maximum number t of tables, that can be decorated in the required manner.

Input Format(From the terminal/stdin)

The single line contains three integers r, g and b (0 \le r,g,b \le 2 \cdot 109) - the number of red, green and blue baloons respectively. The numbers are separated by exactly one space.

Output Format(To the terminal/stdout)

Print a single integer t - the maximum number of tables that can be decorated in the required manner.

Sample Input 1

Copy
5 4 3
 · · \n

Sample Output 1

Copy
4
 \n

Sample Input 2

Copy
1 1 1
 · · \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
2 3 3
 · · \n

Sample Output 3

Copy
2
 \n

Hints

In the first sample you can decorate the tables with the following balloon sets: "rgg", "gbb", "brr", "rrg", where "r", "g" and "b" represent the red, green and blue balls, respectively.

Submit

请先 登录

© 2025 FAQs