結果
| 問題 |
No.920 あかあお
|
| コンテスト | |
| ユーザー |
tekihei2317
|
| 提出日時 | 2019-11-08 21:26:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 496 bytes |
| コンパイル時間 | 1,591 ms |
| コンパイル使用メモリ | 165,980 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-23 03:34:39 |
| 合計ジャッジ時間 | 2,336 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include<bits/stdc++.h>
#define int long long
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
signed main()
{
cin.tie(0);
ios::sync_with_stdio(false);
int X,Y,Z; cin>>X>>Y>>Z;
int ans=0;
for(int N=1;N<=100;N++){
int need=max(0LL,N-X)+max(0LL,N-Y);
if(need<=Z) ans=N;
}
cout<<ans<<endl;
return 0;
}
tekihei2317