結果

問題 No.410 出会い
コンテスト
ユーザー hoshiimo28
提出日時 2016-08-12 23:39:21
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 77,636 KB
最終ジャッジ日時 2025-12-03 21:09:49
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 + 1.0*dist_y/2
    print ans
    #return ans

deai()
0