ソースコード
with culc as (
    select count(*) as num, avg(point) as average
    from test_results
    where test_id = '100'
)
, stdev as (
    select sqrt(avg(power(point - average, 2))) as value
    from test_results
    cross join culc
)
select user_id as USER, point as PT, 50 + case value when 0 then 0 else round((point - average) * 10 / value, 1) end as DEV_VAL
from test_results, culc, stdev
提出情報
提出日時2023/02/20 11:15:28
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者kkkkk
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量97 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
97 MB
データパターン2
WA
96 MB
データパターン3
WA
97 MB
データパターン4
WA
96 MB