結果

問題 No.920 あかあお
ユーザー SDESTINY_kpr
提出日時 2020-03-10 00:06:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 167,064 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 19:25:27
合計ジャッジ時間 2,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<int,int>;
#define rep(i,n) for(int i=0;i<n;i++)

const ll mod = ll(1e9) + 7;
const int INF = 1<<29;

int main(){
    int x,y,z;
    cin >> x >> y >> z;
    int ans = 0;
    if (z<=abs(x-y)) ans += min(x,y) + z;
    else{
        ans += max(x,y);
        z -= abs(x-y);
        ans += z/2;
    }
    cout << ans << endl;
    return 0;
}
0