ソースコード
with t_y as (
    select user_id, point, point - (select avg(point) from TEST_RESULTS where test_id = '100') as diff
    from TEST_RESULTS
    where test_id = '100'
),
t_n as (
    select sqrt(sum(diff * diff) / count(*)) as nor
    from t_y
)

select user_id as USER, point as PT,
case
    WHEN (select nor from t_n) = 0 THEN 50
    ELSE round( diff * 10 / (select nor from t_n) + 50, 1)
end as DEV_VAL
from t_y
order by DEV_VAL desc, user_id
提出情報
提出日時2023/02/18 19:11:47
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者yowano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
77 MB
データパターン3
AC
77 MB
データパターン4
AC
77 MB