As a codingamer,
To get the details of your score in the IDE, you can type in your console (once you played all the testcases):
console.log($(".testcase").toArray().map(x=>x.title.match(/^(.*?)(?: \(Points:(\d*)\))*$/)).map(t=>({z:t[1],x:+t[2]||0})).reduce((t,e,s,i)=>t+`${e.z}: ${e.x}\n`+(s===i.length-1?"~~~ SUM ~~~: "+i.reduce((t,e)=>t+e.x,0):""),""));
If you only care about the global score, it’s easier to submit ! 