ソースコード
select
    DISTRICT.DISTRICT_CODE as 'CODE',
    DISTRICT.DISTRICT_NAME as 'NAME',
    LOCATION_TBL.LATITUDE as 'LAT',
    LOCATION_TBL.LONGITUDE as 'LON'
from LOCATION_TBL
inner join DISTRICT
on LOCATION_TBL.DISTRICT_CODE = DISTRICT.DISTRICT_CODE
and DISTRICT.DISTRICT_CODE != '1101'
order by ABS(43.044502 - LOCATION_TBL.LATITUDE)*ABS(43.044502 - LOCATION_TBL.LATITUDE) + ABS(141.354139 - LOCATION_TBL.LONGITUDE)*ABS(141.354139 - LOCATION_TBL.LONGITUDE) desc, DISTRICT.DISTRICT_CODE asc
提出情報
提出日時2023/04/14 20:35:43
コンテスト第6回 SQLコンテスト
問題位置情報
受験者y.wood2
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
2/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
83 MB
データパターン3
WA
91 MB