From Garth Webb Secondary School, Olympiads School, PEO-Mississauga Chapter
About
Learn to increase your brain's mass, not to make CCO. - volcano (after lots of advice)
Is my profile too long? Auto-scroll to bottom?
A mid competitive programmer and problem setter.
i spend too much time on here :(
Joined Olympiads School Computer Contest Level 3 on September 13, 2022.
Aiming to get invited to CCO 2023. (in silence)
Fun Facts: I have very few upvoted comments (but I write them with good intent, and most of them are helpful). I am also the most popular volcano on DMOJ.
Profile linking: volcano
DMOJ's best debuggers: X_Ray, Ryzon, wleung_bvg, Riolku, Marshmellon
Orz: Marshmellon, X_Ray, Riolku, wleung_bvg, Joelfu, Plasmatic, BalintR
!Orz: seal308
Teachers: bruce
Volcano Judge (my online judge):
A slightly broken judge based on DMOJ and Codeforces: https://volcanojudge.pythonanywhere.com
Other Judge Profiles:
Volcano Judge: volcano
LeetCode: volcano8
Rated Contests:
- DQ'd on first contest (AAC7) / 419 rating
- 20/600 in DMOPC '22 C1 (#172) / 920 rating
- 0/500 in SGSPC (#152) / 988 rating
- 0/500 in YAC5 (#201) / 1011 rating
- 130/600 in DMOPC '22 C2 (#112) / 1133 rating
- 350/800 in BSSPC '22 (#127) / 1203 rating
- 225/600 in YAC6 (#77) / 1322 rating
CCC Progress:
- 30/75 in CCC Junior 2022; pls don't talk about it
My Favourite Problems:
User-Script to Hide Problem Types:
$(document).ready(function(){
$('#problem-types').hide();
});
Fast I/O for Competitive Programming (from GeeksForGeeks):
void read(int &number)
{
bool negative = false;
register int c;
number = 0;
c = getchar();
if (c=='-')
{
negative = true;
c = getchar();
}
for (; (c>47 && c<58); c=getchar())
number = number *10 + c - 48;
if (negative)
number *= -1;
}
By the way, the DMOJ profile editor user reference feature is broken. I'll let you figure out how :)
(Now reported to DMOJ & maybe I'll fix it soon...)