340 problems solved
Rank by points: #1084
Total points:
333
8 contests written
Rank by rating: #3108
Rating: 1211
Min. rating: 872
Max rating: 1211
From Newmarket H.S., Olympiads School, Coding Bowl
About
how to motivate ??
i suck at cp help
Milestones
- Made account Oct. 20, 2019
- solved first 3 pointer with help two days later
- First 3p solved by myself on Aug. 3, 2020
- First 5p solved by myself on Jan 8, 2022
- First 7p solved by myself on Jan 8, 2022
- First 10p solved by myself on Oct 2, 2022
- First 15p solved on Jan 29, 2023 (thanks bruce)
- First 15p solved by myself on Feb 14, 2024 (ccc cram)
- First 17p solved on Feb 5, 2023 (thanks bruce)
Contests
- CCC Junior 2022: 62/75 (missed point on J4 and got 3 points on J5)
- Gauss G8 2022: 118/150
- COMC 2022: 13/80 (LMAO)
- CCC Senior 2023: 22/75 (threw incredibly hard)
- forgot to register for any 2023 CEMC math contests
- CCC Senior 2024: 39/75
(slightly less throw this year)HAHA ONE POINT OFF HR IM NOT MAD IM NOT MAD - Cayley 2024: 130/150 4 points off hr its actually over
Userscript
$("span[id^='flake']").remove(); // the grinch
// hide points before solve
const problemUrlMatcher = /^https:\/\/dmoj\.ca\/problem\/(\w+)(?:#.+)?$/;
$(document).ready(function(){
if(problemUrlMatcher.test(window.location.href) && document.getElementsByClassName("solved-problem-color title-state fa fa-check-circle").length == 0){
let problemPointsDiv = document.querySelector('#content-right > div.info-float > div.problem-info-entry');
let pp = problemPointsDiv.children.item(2);
pp.innerHTML = "???";
}
else if(window.location.href.startsWith('https://dmoj.ca/problems/')){
for(let td of document.querySelectorAll('#problem-table > tbody > tr > td.p')){
if(td.parentElement.querySelector("td[solved]").getAttribute('solved') != 1){
td.innerHTML = '???'
}
}
}
});
Rating history
, #