Skip to content

Latest commit

 

History

History
44 lines (42 loc) · 1.55 KB

README.md

File metadata and controls

44 lines (42 loc) · 1.55 KB

スクリーンショット 2020-12-26 16 38 31

User Data

Official WCA competition results are fetched by WCA API v0.

Check out WCA org Github wiki about WCA API.

For each event, only single record is used.


Point Calculation

Parameters

  • WR: world record time(or score)
  • AVG: assumed average time(or score) to get 50 points
  • PB: personal best time(or score)

If your time is better than AVG, you get score

  • 50 + 50 * (AVG - PB) / (AVG - WR)

For MBLD, you get score

  • 50 + 50 * (PB - AVG) / (WR - AVG)

If your time is not better than AVG, you get score

  • 10 + 40 * AVG / PB

For MBLD, you get score

  • 10 + 40 * PB / AVG

Considering the appearance of radarchart, minimum point is set to 10.