結果
| 問題 | No.920 あかあお |
| コンテスト | |
| ユーザー |
ongakucas
|
| 提出日時 | 2019-12-10 17:30:12 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 299 bytes |
| 記録 | |
| コンパイル時間 | 894 ms |
| コンパイル使用メモリ | 183,748 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-09 11:48:04 |
| 合計ジャッジ時間 | 1,358 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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