ソースコード
select
user_id as USER,
point as PT, 
case when stdev = 0 then 50
else round((((point- average)*10)/ stdev)+50,1) end as DEV_VAL
from test_results
cross join (
select
average,
sqrt(avg(pow(point-average,2))) as stdev
from test_results
cross join (select
avg(point) as average
from test_results
where test_id = '100')
where test_id = '100')
where test_id = '100'
order by DEV_VAL desc,user_id;
提出情報
提出日時2024/04/09 20:38:32
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者sakichiii
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB
データパターン3
AC
84 MB
データパターン4
AC
84 MB