結果

問題 No.410 出会い
ユーザー mmn15277198
提出日時 2020-06-07 15:04:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 89,584 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 17:17:25
合計ジャッジ時間 1,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<string.h>
#include<vector>
#include<algorithm>
#include<iomanip>
#include<deque>
#include<map>
#include<stdio.h>
using namespace std;

int main(){
	int px,py;
	cin >> px >> py;
	int qx,qy;
	cin >> qx >> qy;
	
	int dx=abs(px-qx);
	int dy=abs(py-qy);
	
	int dist=(dx+dy)/2;
	cout << dist;
	if((dx+dy)%2!=0){
		cout << ".5";
	}
	cout << endl;

	return 0;
}
0