ソースコード
select
    d.district_code CODE
    , d.district_name NAME
    , t.latitude LAT
    , t.longitude LON
from DISTRICT d
inner join LOCATION_TBL t on d.district_code=t.district_code
                          and d.district_code != '1101'
cross join LOCATION_TBL lt on lt.district_code='1101'
order by (pow(lt.latitude - t.latitude, 2) + pow(lt.longitude - t.longitude, 2)) desc
         , d.district_code
;
提出情報
提出日時2024/05/09 15:54:16
コンテスト第6回 SQLコンテスト
問題位置情報
受験者sjty9561
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB
データパターン3
AC
83 MB