ソースコード
with a as (
select
    *,
    p2-p1*p1 as v,
    sqrt(p2-p1*p1) as std
from
(
        select
            cast(sum(POINT) as real) / cast(count(*) as real) p1,
            cast(sum(POINT * POINT) as real) / cast(count(*) as real) p2
        from
            TEST_RESULTS
        where
            TEST_ID = '100'
    ))
select 
USER_ID USER,
point PT,
round((cast(point as real)-p1)*10.0/std + 50,1)  DEV_VAL
 from
TEST_RESULTS,a
where test_id='100'
order by 3 desc,1
提出情報
提出日時2024/04/18 13:07:36
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者orekwys
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
WA
83 MB
データパターン3
AC
82 MB
データパターン4
AC
83 MB