ソースコード
-- TEST_RESULTS
with summ as (select sum(POINT)                                                                                     SUM_P,
                     avg(POINT)                                                                                     AVG_P,
                     count(*)                                                                                       CNT,
                     cast(sum(POINT * POINT) as REAL) / cast(count(*) as real) - (avg(POINT) * avg(POINT))       as V,
                     sqrt(cast(sum(POINT * POINT) as REAL) / cast(count(*) as real) - (avg(POINT) * avg(POINT))) as STD
              from TEST_RESULTS
              where TEST_ID = '100')
select USER_ID                                                     as USER,
       POINT                                                       as PT,
       case when std=0.0 then 50
           else
       round((cast(point as real) - AVG_P) * 10.0 / STD + 50.0, 1) end as DEV_VAL
from TEST_RESULTS,
     summ
where TEST_ID = '100'
order by 3 desc, 1;
提出情報
提出日時2023/02/20 11:48:24
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者tamurakami
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
79 MB
データパターン2
AC
84 MB
データパターン3
AC
84 MB
データパターン4
AC
79 MB