結果
| 問題 |
No.920 あかあお
|
| コンテスト | |
| ユーザー |
ongakucas
|
| 提出日時 | 2019-12-10 17:30:12 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 299 bytes |
| コンパイル時間 | 1,634 ms |
| コンパイル使用メモリ | 166,380 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-24 01:53:27 |
| 合計ジャッジ時間 | 2,437 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
typedef long long ll;
int main(){
int x,y,z;
cin >> x >> y >> z;
while(z>0){
if(x<y)x++;
else y++;
z--;
}
cout << min(x,y) << endl;
}
ongakucas