結果
問題 |
No.410 出会い
|
ユーザー |
![]() |
提出日時 | 2016-08-12 23:09:04 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 842 bytes |
コンパイル時間 | 1,164 ms |
コンパイル使用メモリ | 158,404 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-07 15:44:24 |
合計ジャッジ時間 | 1,932 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)/2.0+abs(py-qy)/2.0<<endl; return 0; }