結果
| 問題 | 
                            No.91 赤、緑、青の石
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-09-16 08:39:32 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 10 ms / 5,000 ms | 
| コード長 | 1,449 bytes | 
| コンパイル時間 | 705 ms | 
| コンパイル使用メモリ | 78,080 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-24 07:10:48 | 
| 合計ジャッジ時間 | 1,816 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 28 | 
ソースコード
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <functional>
#include <set>
#include <numeric>
#include <stack>
#include <utility>
#include <time.h>
//#include "util.h"
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define PI 3.14159265358979323846
#define EPS 1e-6
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)>(b)?(a):(b))
#define CHAR_BIT 8
#define all(x) (x).begin(), (x).end()
template <typename _Ty>
ostream& operator << (ostream& ostr, const vector<_Ty>& v) {
	if (v.empty()) {
		cout << "{ }";
		return ostr;
	}
	cout << "{" << v.front();
	for (auto itr = ++v.begin(); itr != v.end(); itr++) {
		cout << ", " << *itr;
	}
	cout << "}";
	return ostr;
}
int yuki0091()
{
	int ans = 0;
	vector<int> c(3, 0);
	cin >> c[0] >> c[1] >> c[2];
	
	sort(all(c));
	// a <= b <= c
	ans += c[0];
	c[1] -= c[0]; c[2] -= c[0]; c[0] = 0;
	// 0 <= b <= c
	//cout << ans << " " << c << endl;
	while (1 <= c[1] && 3 <= c[2]) {
		ans++;
		c[1]--; c[2] -= 3;
		if (c[1] > c[2]) swap(c[1], c[2]);
		//cout << ans << " " << c << endl;
	}
	while (c[2] >= 5) {
		ans++;
		c[2] -= 5;
		//cout << ans << " " << c << endl;
	}
	cout << ans << endl;
	
	return 0;
}
int main()
{
	//clock_t start, end;
	//start = clock();
	yuki0091();
	//end = clock();
	//printf("%d msec.\n", end - start);
	return 0;
}