ソースコード
select
l.district_code as CODE
,district_name as NAME
,l.latitude as LAT
,l.LONGITUDE as LON
from location_tbl as l
inner join district as d
on l.district_code = d.district_code
cross join (
    select latitude,longitude from location_tbl where district_code ='1101'
) as A
where code <> '1101'
order by (l.latitude - A.latitude)*(l.latitude - A.latitude)+(l.longitude - A.longitude)*(l.longitude - A.longitude) desc,CODE
提出情報
提出日時2024/05/23 10:59:35
コンテスト第6回 SQLコンテスト
問題位置情報
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
85 MB
データパターン3
AC
86 MB