ソースコード
select
user_id as USER,
point as PT, 
round((((point- average)*10)/ stdev)+50,1) 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:36:18
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者sakichiii
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
WA
83 MB
データパターン3
AC
83 MB
データパターン4
AC
84 MB