ソースコード
with T1 as(
select
    avg(POINT) as AV
from TEST_RESULTS 
where TEST_ID = '100'
)
,T2 as(
select
    sqrt(avg(pow(POINT-T1.AV,2))) as DV
from TEST_RESULTS 
cross join T1
where TEST_ID = '100'
)

select
USER_ID as USER
,POINT as PT
,case when DV!=0 then round((TR.POINT-T1.AV)*10/T2.DV,1)+50 else 50 end as DEV_VAL
from TEST_RESULTS as TR
cross join T1
cross join T2
where TEST_ID = '100'
order by DEV_VAL desc,USER_ID asc
提出情報
提出日時2023/10/02 17:21:19
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者abcdefghijklmnopqrstuvwxy
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
75 MB
データパターン2
AC
77 MB
データパターン3
AC
75 MB
データパターン4
AC
77 MB