結果

問題 No.208 王将
ユーザー phspls
提出日時 2020-04-10 00:25:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 1,472 ms
コンパイル使用メモリ 165,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 03:17:32
合計ジャッジ時間 2,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define llong long long

int main() {
    llong x, y, x2, y2;
    cin >> x >> y >> x2 >> y2;

    if(x == y && x2 == y2 && x*x2 >= 0 && abs(x) > abs(x2)) {
        cout << x+1 << "\n";
    } else {
        cout << max(abs(x), abs(y)) << "\n";
    }
}
0