結果
| 問題 | 
                            No.208 王将
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-09-05 15:16:18 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 179 bytes | 
| コンパイル時間 | 534 ms | 
| コンパイル使用メモリ | 63,048 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-11-15 20:28:00 | 
| 合計ジャッジ時間 | 1,219 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 23 | 
ソースコード
#include <iostream>
using namespace std;
int main() {
	int x,y,x2,y2;
	cin>>x>>y>>x2>>y2;
	int move=x>y?x:y;
	if(x==y&&x2==y2&&x2<x){
		move++;
	}
	cout<<move<<endl;
	return 0;
}