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