結果

問題 No.91 赤、緑、青の石
ユーザー mamekinmamekin
提出日時 2014-12-07 19:55:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 728 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 95,600 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 06:43:53
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    vector<int> a(3);
    for(int i=0; i<3; ++i)
        cin >> a[i];

    int ret = 0;
    for(;;){
        sort(a.begin(), a.end());
        if(a[0] < 0)
            break;
        ret = max(ret, a[0]);

        ++ a[0];
        a[2] -= 2;
    }
    cout << ret << endl;

    return 0;
}
0