結果

問題 No.91 赤、緑、青の石
ユーザー 0w10w1
提出日時 2016-11-20 16:34:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 168,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 12:01:38
合計ジャッジ時間 2,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

signed main(){
  int R, G, B; cin >> R >> G >> B;
  int ans = min( { R, G, B } );
  R -= ans, G -= ans, B -= ans;
  if( R + G > 0 and G + B > 0 and R + B > 0 ){
    int v[ 3 ] = { R, G, B }; sort( v, v + 3 );
    int lb = 0, rb = ( int ) 1e7;
    int z = 0;
    while( lb <= rb ){
      int mid = lb + rb >> 1;
      int ok = 0;
      for( int i = 0; i <= mid; ++i ){
        if( v[ 1 ] - 2 * i < mid )
          break;
        if( v[ 2 ] - 2 * ( mid - i ) >= mid )
          ok = 1;
      }
      if( ok )
        z = mid, lb = mid + 1;
      else
        rb = mid - 1;
    }
    ans += z;
  }
  cout << ans << endl;
  return 0;
}
0