CF322B.Ciel and Flowers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Fox Ciel has some flowers: rr red flowers, gg green flowers and bb blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets:

  • To make a "red bouquet", it needs 3 red flowers.
  • To make a "green bouquet", it needs 3 green flowers.
  • To make a "blue bouquet", it needs 3 blue flowers.
  • To make a "mixing bouquet", it needs 1 red, 1 green and 1 blue flower.

Help Fox Ciel to find the maximal number of bouquets she can make.

输入格式

The first line contains three integers rr , gg and bb ( 0<=r,g,b<=1090<=r,g,b<=10^{9} ) — the number of red, green and blue flowers.

输出格式

Print the maximal number of bouquets Fox Ciel can make.

输入输出样例

  • 输入#1

    3 6 9
    

    输出#1

    6
    
  • 输入#2

    4 4 4
    

    输出#2

    4
    
  • 输入#3

    0 0 0
    

    输出#3

    0
    

说明/提示

In test case 1, we can make 1 red bouquet, 2 green bouquets and 3 blue bouquets.

In test case 2, we can make 1 red, 1 green, 1 blue and 1 mixing bouquet.

首页