コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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