結果

問題 No.410 出会い
ユーザー nnasen
提出日時 2017-09-05 14:44:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 166,532 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 11:25:02
合計ジャッジ時間 2,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) FOR(i,0,n)
#define SZ(n) (int)(n).size()
#define ALL(n) (n).begin(), (n).end()
using namespace std;
typedef long long LL;
typedef vector<int> VI;

int main() {
	int px, py, qx, qy;
	cin >> px >> py >> qx >> qy;
	int ans = abs(px - qx) + abs(py - qy);
	double m = (ans % 2 == 1) ? 1 : 0;
	cout << setprecision(20) << fixed << floor(ans / 2.0) + m / 2 << endl;
	return 0;
}
0