ソースコード
with st as (
select latitude as lat, longitude as lon
from location_tbl
where district_code = '1101'
)
select 
location_tbl.district_code as CODE
, district.district_name as NAME
, latitude as LAT
, LONGITUDE as LON
from location_tbl join district on location_tbl.district_code = district.district_code cross join st
where location_tbl.district_code != '1101'
order by 
abs(location_tbl.latitude - st.lat) * abs(location_tbl.latitude - st.lat) + abs(location_tbl.longitude - st.lon) * abs(location_tbl.longitude - st.lon)
desc, location_tbl.district_code asc
提出情報
提出日時2024/04/27 17:45:50
コンテスト第6回 SQLコンテスト
問題位置情報
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB
データパターン3
AC
85 MB