結果
問題 | No.410 出会い |
ユーザー |
![]() |
提出日時 | 2016-08-13 00:27:00 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 535 bytes |
コンパイル時間 | 1,410 ms |
コンパイル使用メモリ | 157,696 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 11:00:48 |
合計ジャッジ時間 | 1,989 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
#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; cout << setprecision(10) << fixed << ( abs(px-qx) + abs(py-qy) ) / 2.0 << endl; return 0; }