ソースコード
select
l.district_code as CODE
,district_name as NAME
,l.latitude as ALT
,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:58:20
コンテスト第6回 SQLコンテスト
問題位置情報
受験者HamamatsuUnagi
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
85 MB
データパターン3
WA
86 MB