結果

問題 No.91 赤、緑、青の石
ユーザー GrayCoderGrayCoder
提出日時 2018-08-15 18:34:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 909 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 171,988 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-24 17:29:07
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const long mod = 1e9 + 7;

int main(void) {
#ifdef DEBUG
  freopen("input.txt", "r", stdin);
#endif

  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  long R, G, B;
  cin >> R >> G >> B;

  vector<long> color = {R, G, B};
  sort(color.begin(), color.end());

  if (color[2] > 2) {
    long n;
    if (color[2] - color[1] < color[1] - color[0])
      n = (color[2] - color[1]) / 2;
    else
      n = (color[1] - color[0]);
    color[0] += n;
    color[2] -= n * 2;
  }
  while (1) {
    if (color[0] == color[1]) {
      color[0] += 1;
      color[1] += 1;
      color[2] -= 4;
    } else if (color[2] - color[1] < 2) {
      color[0] += 2;
      color[1] -= 2;
      color[2] -= 2;
    }
    if (color[2] - color[1] < 2 && color[1] - color[0] < 2)
      break;
  }
  cout << min({color[0], color[1], color[2]}) << endl;
  return 0;
}
0