コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with immigrations as (
select
port_code,
sum(case when kind_code = '110' then amt else 0 end) as in_amount,
sum(case when kind_code = '120' then amt else 0 end) as out_amount
from
immigration
where
group_code = '120' -- 外国人
group by
port_code
)
select
I.port_code as 港コード,
P.port_name as 港名,
I.in_amount as 入国者数,
I.out_amount as 出国者数,
I.in_amount - I.out_amount as 差分
from
immigrations I
join port P
on I.port_code = P.port_code
where
I.in_amount > I.out_amount
order by
差分 desc,
I.port_code desc
;
提出情報
提出日時 | 2022/07/23 07:46:14 |
コンテスト | 第1回 SQLコンテスト |
問題 | 港入出国者分析 |
受験者 | tekihei2317 |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 80 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
79 MB
データパターン2
AC
80 MB