ソースコード
with tbl1 as(
select 
avg(point) as av
from TEST_RESULTS
where test_id='100'
)
,tbl2 as(
select
power(point-av,2) as pw
from test_results,tbl1
where test_id='100'
)
,tbl3 as(
select
sqrt(avg(pw)) as hensa
from tbl2
)
select 
USER_ID as USER,
POINT as PT,
case
when tbl3.hensa <>50 then
round((point-tbl1.av)*10/tbl3.hensa,1)+50
else 50 
end
as DEV_VAL
from test_results,tbl3,tbl1
where test_id='100'
order by DEV_VAL desc,USER_ID asc
    
提出情報
提出日時2023/09/26 17:03:32
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者abcdefghijklmnopqrstuvwxy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
WA
78 MB
データパターン3
AC
78 MB
データパターン4
AC
76 MB