コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
-- https://topsic-contest.jp/contests/contest00x/problems/contest00x-3
select
imi.port_code as 港コード,
port.port_name as 港名,
sum(case when kind_code == 110 then amt else null end) as 入国者数,
sum(case when kind_code == 120 then amt else null end) as 出国者数,
(sum(case when kind_code == 110 then amt else null end) - sum(case when kind_code == 120 then amt else null end)) as 差分
from
immigration imi
left join
port
on imi.port_code = port.port_code
group by
imi.port_code,
port.port_name
order by
(sum(case when kind_code == 110 then amt else null end) - sum(case when kind_code == 120 then amt else null end)) desc,
port.port_code desc
limit 3
;
提出情報
提出日時 | 2022/09/16 15:25:01 |
コンテスト | 第1回 SQLコンテスト |
問題 | 外国籍分布 |
受験者 | kokiando |
状態 (詳細) | RE (Runtime Error: 実行時エラー) |
メモリ使用量 | 81 MB |
メッセージ
SQLITE_ERROR: no such table: immigration
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
80 MB
データパターン2
RE
81 MB