ソースコード
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
, ROUND(diff * 10 / sq + 50, 1) as DEV_VAL
from st cross join si
order by DEV_VAL desc, USER_ID
提出情報
提出日時2024/04/27 18:40:16
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者daku10
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
WA
84 MB
データパターン3
AC
85 MB
データパターン4
AC
84 MB