ソースコード
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,
round( diff * 10 / (select nor from t_n) + 50, 1) as DEV_VAL
from t_y
order by DEV_VAL desc, user_id
提出情報
提出日時2023/02/18 19:09:29
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者yowano
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
WA
75 MB
データパターン3
AC
76 MB
データパターン4
AC
76 MB