結果

問題 No.91 赤、緑、青の石
ユーザー komori3komori3
提出日時 2017-09-16 08:39:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 1,449 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 78,416 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-06 12:33:15
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
4,376 KB
testcase_01 AC 6 ms
4,380 KB
testcase_02 AC 4 ms
4,380 KB
testcase_03 AC 6 ms
4,376 KB
testcase_04 AC 4 ms
4,376 KB
testcase_05 AC 7 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 6 ms
4,376 KB
testcase_13 AC 8 ms
4,376 KB
testcase_14 AC 5 ms
4,380 KB
testcase_15 AC 8 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 11 ms
4,376 KB
testcase_26 AC 10 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 7 ms
4,380 KB
testcase_31 AC 10 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0