ソースコード
select
    t.USER_ID as USER
    ,t.POINT as PT
    ,case when round(50+10*(t.POINT - t1.avg_POINT)/t4.avg_db,1) = 0 then 50
        else round(50+10*(t.POINT - t1.avg_POINT)/t4.avg_db,1) end as DEV_VAL
from TEST_RESULTS t
    cross join (
        select AVG(POINT) as avg_POINT from TEST_RESULTS
        where TEST_ID = '100'
    ) t1
    cross join (
        select sqrt(avg((t2.POINT - t3.avg_POINT)*(t2.POINT - t3.avg_POINT))) as avg_db
        from TEST_RESULTS t2
            cross join (
                select AVG(POINT) as avg_POINT from TEST_RESULTS
                where TEST_ID = '100'
            ) t3
        WHERE t2.TEST_ID = '100'
    ) t4
WHERE t.TEST_ID = '100'
ORDER BY DEV_VAL desc, USER
提出情報
提出日時2023/02/19 18:12:07
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者S_Katou
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量98 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
WA
85 MB
データパターン3
AC
86 MB
データパターン4
AC
98 MB