結果

問題 No.410 出会い
ユーザー first_vil
提出日時 2020-06-30 20:55:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 119 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 09:40:50
合計ジャッジ時間 1,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b=map(int,input().split())
c,d=map(int,input().split())
print(math.sqrt(pow(abs(a-c),2)+pow(abs(b-d,2))))
0