コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with tmp as (
select
d.district_code
,d.district_name
,l.latitude
,l.longitude
from
location_tbl l inner join district d
on l.district_code = d.district_code
where
l.district_code <> '1101'
), tmp2 as (
select
district_code
,latitude
,longitude
from
location_tbl
where
district_code = '1101'
), tmp3 as (
select
t1.district_code
,t1.district_name
,sqrt(
(t1.longitude - t2.longitude) * (t1.longitude - t2.longitude)
+ (t1.latitude - t2.latitude) * (t1.latitude - t2.latitude)
) len
,t1.latitude
,t1.longitude
from
tmp t1 cross join tmp2 t2
--on t1.district_code <> t2.district_code
)
select
district_code CODE
,district_name NAME
,latitude LAT
,longitude LON
from
tmp3
order by
len desc, district_code
;
提出情報
提出日時 | 2024/09/28 17:47:29 |
コンテスト | 第6回 SQLコンテスト |
問題 | 位置情報 |
受験者 | nosh |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
85 MB
データパターン3
AC
84 MB