ソースコード
with ex as (select 
avg(point) as p
, count(1) as cnt
from test_results where TEST_ID = '100'
)
, st as (select 
USER_ID, POINT, POINT - ex.p as diff
from test_results cross join ex where test_id = '100'
)
, si as (
select sqrt(avg(pow(diff, 2))) as sq
from st
)
select 
USER_ID as USER
, POINT as PT
, case when sq = 0 then 50 else ROUND(diff * 10 / sq + 50, 1) end as DEV_VAL
from st cross join si
order by DEV_VAL desc, USER_ID
提出情報
提出日時2024/04/27 21:59:01
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
83 MB
データパターン3
AC
83 MB
データパターン4
AC
84 MB