結果
| 問題 | 
                            No.208 王将
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Lay_ec
                         | 
                    
| 提出日時 | 2015-05-16 00:17:18 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 433 bytes | 
| コンパイル時間 | 588 ms | 
| コンパイル使用メモリ | 78,400 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-09 16:22:28 | 
| 合計ジャッジ時間 | 1,385 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 23 | 
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>
using namespace std;
int main()
{
		
	long long x,y,x2,y2;
	cin>>x>>y>>x2>>y2;
	
	long long res=max(x,y);
	
	if(x==y && x2==y2 && x2<x) res++;
	cout<<res<<endl;
	
	return 0;
}
            
            
            
        
            
Lay_ec