結果
問題 | No.91 赤、緑、青の石 |
ユーザー |
|
提出日時 | 2018-01-12 23:12:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 52 ms / 5,000 ms |
コード長 | 447 bytes |
コンパイル時間 | 1,691 ms |
コンパイル使用メモリ | 171,432 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 07:13:26 |
合計ジャッジ時間 | 3,051 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 28 |
ソースコード
#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;}