結果

問題 No.410 出会い
ユーザー tkw_tech
提出日時 2016-08-12 23:37:53
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 157,448 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 15:55:51
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(ll i=0; i<(ll)(n); i++)
#define FOR(i,n,m) for (ll i=n; i<(ll)(m); i++)
#define pb push_back
#define INF 1000000007LL
#define all(a) (a).begin(),(a).end()

typedef long long ll;
typedef pair<int,int> p;

int dy[4]={-1,1,0,0};
int dx[4]={0,0,1,-1};

int PX, PY;
int QX, QY;
int main(){
    ios::sync_with_stdio(false);
    
    cin >> PX >> PY;
    cin >> QX >> QY;
    int mX = max(PX,QX) - min(PX,QX);
    int mY = max(PY,QY) - min(PY,QY);
    cout << double( mX + mY ) / 2.0 << endl;
    
    return 0;
}
0