結果
問題 | No.410 出会い |
ユーザー |
![]() |
提出日時 | 2016-08-12 23:13:07 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 840 bytes |
コンパイル時間 | 1,384 ms |
コンパイル使用メモリ | 157,588 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 15:46:37 |
合計ジャッジ時間 | 2,230 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 WA * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef pair<int,int> pii; typedef long long ll; #define ITR(v,c) for(auto v=begin(c);v!=end(c);v++) #define FOR(v,a,n) for(int v=a;v<(int)(n);v++) #define FORE(x,arr) for(auto &x:arr) #define REP(v,n) FOR(v,0,n) #define ALL(c) begin(c),end(c) const int DX[4]={0,1,0,-1}, DY[4]={-1,0,1,0}; const int INF = 1e9; template<class T,class U>ostream&operator<<(ostream &os,const pair<T,U> &p){ os<<"("<<p.first<<","<<p.second<<")";return os;} template<class T>ostream&operator<<(ostream &os,const vector<T> &v){ ITR(i,v)os<<*i<<(i==end(v)-1?"":"\n");return os;} //------------------------------------------------------------------------------ int main(int argc, char const *argv[]) { int px,py,qx,qy; cin>>px>>py>>qx>>qy; cout<<(abs(px-qx)+abs(py-qy))/2.0<<endl; return 0; }