ソースコード
with base as (
    select
        USER_ID as USER
        ,POINT as PT
        ,AVG(POINT) OVER() as AVG_PT
    from
        TEST_RESULTS
    where
        TEST_ID = 100
),
std as (
    select
        pow(cast(sum(pow(PT-AVG_PT,2)) as real)/count(),0.5) as std_
    from
        base
)
select
    USER
    ,PT
    ,case when std_=0 then 50 else round(cast((PT-AVG_PT)*10 as real)/std_+50,1) end as DEV_VAL
from
    base
    cross join
    std
order by
    DEV_VAL desc
    ,USER
提出情報
提出日時2024/03/11 17:56:29
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者gP2fWnUzTL
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
86 MB
データパターン3
AC
82 MB
データパターン4
AC
86 MB