ソースコード
with base as (
  select
    latitude as base_la
    , longitude as base_lo
  from
    location_tbl
  where
    district_code = '1101'
)

select
  district_code as CODE
  , district_name as NAME
  , latitude as LAT
  , longitude as LON
from district
inner join location_tbl
  using(district_code)
cross join base
where district_code != '1101'
order by (pow(latitude - base_la, 2) + pow(longitude - base_lo, 2)) desc, district_code
提出情報
提出日時2023/04/23 18:47:21
コンテスト第6回 SQLコンテスト
問題位置情報
受験者ttt1
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
79 MB
データパターン3
AC
76 MB