ソースコード
with r as (
select *, rank() over(partition by session_id order by EX_TIMESTAMP) as ra
from process_log
)
, r2 as (
select * from r
where ra == cast(substr(process_id, 5) as integer)
)
, r3 as (select * 
, (select count(1) from r2 b where b.ra < a.ra and b.session_id = a.session_id) as cnt
from r2 as a
)
select 
process_id as PROCESS
, count(1) as CNT
from r3
where ra - 1 = cnt
group by process_id
order by PROCESS
提出情報
提出日時2024/05/03 21:34:24
コンテスト第10回 SQLコンテスト
問題顧客行動分析
受験者daku10
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB
データパターン3
AC
85 MB
データパターン4
WA
83 MB