コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
USER_ID as USER, point as PT, round((point-a)*(case when d=0 then 0 else 10.0/d end)+50,1) as DEV_VAL
from TEST_RESULTS
inner join (
select
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:03:26 |
コンテスト | 第5回 SQLコンテスト |
問題 | 偏差値の算出 |
受験者 | tabr |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 79 MB |
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
78 MB
データパターン3
AC
79 MB
データパターン4
AC
76 MB