ソースコード
select
    USER_ID as USER, point as PT, round((point-a)*d+50,1) as DEV_VAL
from TEST_RESULTS
inner join (
    select
        10.0/sqrt(sum((point - a)*(point - a))*1.0/c) as d
    from
        TEST_RESULTS
        inner join (
            select avg(POINT) as a
            from TEST_RESULTS
            where TEST_ID=100
        )
        inner join (
            select count(POINT) as c
            from TEST_RESULTS
            where TEST_ID=100
        )
    where test_id=100
) inner join (
    select avg(POINT) as a
    from TEST_RESULTS
    where TEST_ID=100
)
where test_id=100
order by DEV_VAL desc,USER_ID
提出情報
提出日時2023/04/09 21:00:44
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者tabr
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
3/4
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
WA
78 MB
データパターン3
AC
78 MB
データパターン4
AC
78 MB