結果

問題 No.91 赤、緑、青の石
ユーザー h_nosonh_noson
提出日時 2016-02-19 00:04:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 62,588 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 06:55:42
合計ジャッジ時間 1,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

#define RREP(i,s,e) for (int i = e-1; i >= s; i--)
#define rrep(i,n) RREP(i,0,n)
#define REP(i,s,e) for (int i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)

int main() {
    int rgb[3], ans;
    rep (i,3) cin >> rgb[i];
    ans = *min_element(rgb,rgb+3);
    rep (i,3) rgb[i] -= ans;
    sort(rgb,rgb+3);
    while (rgb[2] >= 3) {
        rgb[2] -= 2;
        rgb[0]++;
        sort(rgb,rgb+3);
        if (rgb[0] > 0) {
            ans++;
            rep (i,3) rgb[i]--;
        }
    }
    cout << ans << endl;
    return 0;
}
0