ソースコード
with avg1 as(
    select
        avg(POINT) as avgp
    from 
        TEST_RESULTS
    where
        TEST_ID = '100'
), avg2 as(
    select
        avg(pow(POINT - avgp,2)) as var
    from TEST_RESULTS
    cross join avg1
    where
        test_ID = '100'
)
select
    USER_ID as USER,
    POINT as PT,
    case
        when var = 0 then 50
        else round(((cast((POINT - avgp) * 10 as real)) / sqrt(var)),1) + 50 
    end as DEV_VAL
from TEST_RESULTS
cross join avg1
cross join avg2
where
    TEST_ID = '100'
order by 
    DEV_VAL desc,
    USER asc;
    
提出情報
提出日時2024/07/25 16:16:49
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者asano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
83 MB
データパターン3
AC
83 MB
データパターン4
AC
86 MB