結果
問題 |
No.410 出会い
|
ユーザー |
![]() |
提出日時 | 2016-08-12 22:26:32 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 507 bytes |
コンパイル時間 | 1,273 ms |
コンパイル使用メモリ | 157,940 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 12:26:02 |
合計ジャッジ時間 | 2,101 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 WA * 1 |
ソースコード
#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}; double px,py; double qx,qy; int main(){ ios::sync_with_stdio(false); cin >> px >> py; cin >> qx >> qy; cout << ( abs(px-qx) + abs(py-qy) ) / 2.0 << endl; return 0; }