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