結果
問題 | No.91 赤、緑、青の石 |
ユーザー | GrayCoder |
提出日時 | 2018-08-15 17:48:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 819 bytes |
コンパイル時間 | 1,572 ms |
コンパイル使用メモリ | 172,736 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 09:26:44 |
合計ジャッジ時間 | 2,746 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | WA | - |
ソースコード
#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 && color[2] - 1 > color[1]) { long n = (color[2] - color[1]) / 2; color[0] += n; color[2] -= n * 2; } if (color[2] > 2 && color[2] - 1 > color[0]) { long n = (color[1] - color[0] + 4 - 1) / 4; color[0] += n; color[2] -= n * 2; } if (color[1] > 2 && color[1] - 1 > color[0]) { long n = (color[1] - color[0]) / 2; color[0] += n; color[1] -= n * 2; } cout << min({color[0], color[1], color[2]}) << endl; return 0; }