コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with tbl as(
select
l.district_code as CODE
,district_name as NAME
,l.latitude as ALT
,l.LONGITUDE as LON
,abs(l.latitude - A.latitude)*abs(l.latitude - A.latitude)+abs(l.longitude - A.longitude)*abs(l.longitude - A.longitude)as l
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 desc,CODE)
select CODE,NAME,ALT,LON from tbl
提出情報
提出日時 | 2024/05/23 10:55:04 |
コンテスト | 第6回 SQLコンテスト |
問題 | 位置情報 |
受験者 | HamamatsuUnagi |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 86 MB |
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
86 MB
データパターン3
WA
83 MB