結果

問題 No.91 赤、緑、青の石
コンテスト
ユーザー aitdccd
提出日時 2018-01-12 23:12:38
言語 C++14
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 447 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,457 ms
コンパイル使用メモリ 164,864 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-12-07 12:31:23
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>

using namespace std;

#define REP(i, n) for(int i = 0; i < n; i++)
#define VSORT(v) sort(v.begin(), v.end())

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    vector<int> stone(3);
    REP(i, 3) cin >> stone[i];
    VSORT(stone);
    while (stone[2] >= stone[0] + 2) {
        stone[2] -= 2;
        stone[0]++;
        VSORT(stone);
    }

    cout << stone[0] << endl;
    return 0;
}
0