結果
問題 | No.208 王将 |
ユーザー |
![]() |
提出日時 | 2016-11-08 17:26:21 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 846 bytes |
コンパイル時間 | 377 ms |
コンパイル使用メモリ | 58,716 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 04:53:18 |
合計ジャッジ時間 | 1,037 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#include <iostream>#include <vector>#include <cstdio>#include <algorithm>using namespace std;typedef long long ll;typedef vector<int> vint;typedef pair<int,int> pint;typedef vector<pint> vpint;#define rep(i,n) for(int i=0;i<(n);i++)#define reps(i,f,n) for(int i=(f);i<(n);i++)#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)#define all(v) (v).begin(),(v).end()#define pb push_back#define mp make_pair#define fi first#define se second#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))const int MOD = 1e9 + 7;const int INF = 1e9;int main(void){int x, y, x2, y2;cin >> x >> y >> x2 >> y2;int ans = max(x, y);//x >= 0 y >= 0if(x == y && x2 == y2 && x2 <= x && y2 <= y){printf("%d\n", ans + 1);}else{printf("%d\n", ans);}return 0;}