C. Table Decorations

链接:https://codeforces.com/problemset/problem/478/C

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 rg and b will find the maximum number t of tables, that can be decorated in the required manner.

Input

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

Output

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

Examples

input

Copy

5 4 3

output

Copy

4

input

Copy

1 1 1

output

Copy

1

input

Copy

2 3 3

output

Copy

2

Note

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.

代码:

#include<bits/stdc++.h>
using namespace std;
long long n,s,t,b,k,c,l,r,d,ans,min1=0,mod=1e9+7;
long long a[10];
int main()
{
    cin>>a[1]>>a[2]>>a[3];
    sort(a+1,a+4);
    k=a[1]+a[2];
    if((a[1]+a[2]+a[3])/3<=k)
    cout<<(a[1]+a[2]+a[3])/3;
    else
    cout<<k;
}

 

全部评论

相关推荐

程序员花海:实习和校招简历正确格式应该是教育背景+实习+项目经历+个人评价 其中项目经历注意要体现业务 实习经历里面的业务更是要自圆其说 简历模板尽可能保持干净整洁 不要太花哨的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务