262 problems solved
Rank by points: #1016
Total points:
339
6 contests written
Rank by rating: #4854
Rating: 940
Min. rating: 287
Max rating: 940
From Olympiads School, St. Theresa of Lisieux C.H.S., WCIPEG Migration, Mahou Shoujou
About
fun fact: the wifi network at triway education used to be called "twiway education"
yeeted java away in favor of c++
stage 2 amogu-16 patient
"Every time I see your input function, I get brain aneurysm"
- alexzhang on February 5, 2022 ~ 8:30 PM
my input function:
// windows and macOS users can cry
#define getchar getchar_unlocked
#define putchar putchar_unlocked
template <typename T>
T in() {
T x = 0;
int c;
bool neg = false;
while ((c = getchar()))
if (c == 32 || c == 10) return x *= neg ? -1 : 1;
else neg = c == 45 || neg, x = c >= 48 && c <= 57 ? x * 10 + (c - 48) : x;
return 0;
}
Rating history
, #