結果
問題 | No.920 あかあお |
ユーザー | merom686 |
提出日時 | 2019-11-08 21:23:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 404 bytes |
コンパイル時間 | 724 ms |
コンパイル使用メモリ | 72,936 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-23 03:30:20 |
合計ジャッジ時間 | 1,190 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstring> #include <cstdlib> #include <cmath> using namespace std; using ll = long long; int main() { int x, y, z; cin >> x >> y >> z; int p = min(x, y); x -= p; y -= p; if (y) swap(x, y); int t = min(x, z); z -= t; p += t; p += z / 2; cout << p << endl; return 0; }