コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with is_ac as (
select s.user_id
,s.problem_id
,s.entry_id
,s.submitted_at as ac_time
,s.point
from submissions s
where s.contest_id = 2
and s.status = 'AC'
and s.entry_id is not NULL
)
,penalty as (
select COUNT(*) as wrong_ans
,s.user_id
,s.problem_id
from (is_ac ia
left outer join submissions s
on s.user_id = ia.user_id and s.problem_id = ia.problem_id) tmp
where s.contest_id = 2
and s.status = 'WA'
and s.submitted_at < ia.ac_time
group by s.contest_id, s.user_id
)
, time as (
select ia.user_id
,ia.problem_id
,strftime('%s',ia.ac_time)-strftime('%s',e.started_at) as cost
,ia.ac_time
,e.started_at
,ia.point
from (is_ac ia
join entries e
on ia.entry_id = e.entry_id and ia.user_id and e.user_id)
where e.entry_id is not null
and cost > 0
)
,ltable as (
select t.user_id as USER_ID
,SUM(t.point) as POINT
,t.cost+(p.wrong_ans*300) as EX_TIME
,p.wrong_ans as WRONG_ANS
from time t
join penalty p
on p.user_id=t.user_id
and t.problem_id = t.problem_id
group by t.user_id
)
select USER_ID
,POINT
,EX_TIME
,WRONG_ANS
,rank() over (
order by point desc, ex_time
) as RANK
from ltable
order by point desc, ex_time
提出情報
提出日時 | 2022/10/29 14:20:45 |
コンテスト | 第3回 SQLコンテスト |
問題 | 順位計算 |
受験者 | drillmachine |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 77 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
76 MB
データパターン2
WA
77 MB