結果
問題 |
No.410 出会い
|
ユーザー |
![]() |
提出日時 | 2020-06-07 14:43:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 1,166 ms |
コンパイル使用メモリ | 89,452 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 17:12:05 |
合計ジャッジ時間 | 1,853 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 WA * 1 |
ソースコード
#include<iostream> #include<math.h> #include<string.h> #include<vector> #include<algorithm> #include<iomanip> #include<deque> #include<map> #include<stdio.h> using namespace std; int main(){ int px,py; cin >> px >> py; int qx,qy; cin >> qx >> qy; double ans=abs(px-qx)+abs(py-qy); ans/=2; cout << ans << endl; return 0; }