結果

問題 No.410 出会い
コンテスト
ユーザー hoshiimo28
提出日時 2016-08-12 23:06:29
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 77,348 KB
最終ジャッジ日時 2025-12-03 21:09:43
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def deai():
    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])
    print dist_x
    print dist_y
    ans = 1.0*dist_x/2 + dist_y/2
    print ans
    return ans

deai()
0