結果

問題 No.91 赤、緑、青の石
ユーザー eve__fuyukieve__fuyuki
提出日時 2018-03-14 02:00:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 65,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 14:32:57
合計ジャッジ時間 1,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main(){
    vector<int> list;
    int input,min;
    int ans;
    for(int i=0;i<3;i++){
        cin >> input;
        list.push_back(input);
    }
    sort(list.begin(),list.end(),greater<int>());
    ans = list[2];
    list[0] -= list[2];
    list[1] -= list[2];
    list.pop_back();
    while(list[0] >= 3 && list[1] >= 1){
        min = list[0]/3;
        if(min > list[1]) min = list[1];
        ans += min;
        list[0] -= 3*min;
        list[1] -= min;
        sort(list.begin(),list.end(),greater<int>());
    }
    ans += list[0]/5;
    cout << ans << endl;
    return 0;
}
0