結果
| 問題 | No.920 あかあお |
| コンテスト | |
| ユーザー |
tekihei2317
|
| 提出日時 | 2019-11-08 21:26:30 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 386µs | |
| コード長 | 496 bytes |
| 記録 | |
| コンパイル時間 | 954 ms |
| コンパイル使用メモリ | 179,348 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-02 22:24:06 |
| 合計ジャッジ時間 | 1,992 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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