結果
| 問題 |
No.410 出会い
|
| コンテスト | |
| ユーザー |
tkw_tech
|
| 提出日時 | 2016-08-12 22:27:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 511 bytes |
| コンパイル時間 | 1,265 ms |
| コンパイル使用メモリ | 157,664 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-07 12:26:56 |
| 合計ジャッジ時間 | 2,106 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | WA * 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};
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 + 1 << endl;
return 0;
}
tkw_tech