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