結果

問題 No.410 出会い
ユーザー hoshiimo28hoshiimo28
提出日時 2016-08-12 23:40:33
言語 Python2
(2.7.18)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-06-28 11:00:14
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

p = raw_input().split()
q = raw_input().split()
p = map(int,p)
q = map(int,q)

dist_x = abs(p[0] - q[0])
dist_y = abs(p[1] - q[1])
ans = 1.0*dist_x/2 + 1.0*dist_y/2
print ans
0