結果

問題 No.208 王将
ユーザー highdhighd
提出日時 2016-09-05 15:15:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 63,508 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 20:27:59
合計ジャッジ時間 1,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#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&&x<x2){
		move++;
	}
	cout<<move<<endl;
	return 0;
}
0