ソースコード
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,
round((point-tbl1.av)*10/tbl3.hensa,1)+50 as DEV_VAL
from test_results,tbl3,tbl1
where test_id='100'
order by DEV_VAL desc,USER_ID asc

    
提出情報
提出日時2023/09/26 16:53:03
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者abcdefghijklmnopqrstuvwxy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
75 MB
データパターン2
WA
77 MB
データパターン3
AC
76 MB
データパターン4
AC
76 MB