結果
| 問題 |
No.208 王将
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-13 10:30:22 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 1,000 ms |
| コード長 | 346 bytes |
| コンパイル時間 | 920 ms |
| コンパイル使用メモリ | 65,920 KB |
| 最終ジャッジ日時 | 2025-01-09 17:53:59 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 |
ソースコード
#include <iostream>
void solve() {
int x1, y1, x2, y2;
std::cin >> x1 >> y1 >> x2 >> y2;
int ans = std::max(x1, y1);
if (x1 == y1 && x2 == y2 && y2 < y1) {
ans += 1;
}
std::cout << ans << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}