From Olympiads School, Cloud Times Education, Crescent School, Mahou Shoujou
About
Timothy JunYing Wang (´・ω・`)
Crescent School 2021
Contact
Discord: @Kuais#6537
Codeforces: TimothyW553
Beginner and Practice Stuff
DMOJ Homework: Timmy3pointer
Level 0 Training Sheet (This one uses codeforces)
Want to learn Data Science? Click here and follow my guide on how to become a data scientist!
Teachers and Friends
I don't go to Olympiads but thank you bruce
pcat is my real teacher and he is great!
I have dethroned the great whomax
Young grasshopper: Carter
Good at math™: yanbo
Actually a dummy: MattonXia
Too smart: ryanseto
Asks weird questions: alirezaazimitabrizi
I just wish they actually did contests
crackersamdjam is pretty cool (i guess)
Plasmatic big brain? more like big template
piddddgy is a dev god!
lookcook is CCO CHAD
666245 is getting better!
MXRAGEGUY is in the midst of training...
CCC Scores
Year | Score | Grade | Level | Feeling |
---|---|---|---|---|
2017 |
45 |
8 |
Junior |
Happy :) |
2018 |
35 |
9 |
Senior |
Quite content |
2019 |
37 |
10 |
Senior |
Disappointed |
2020 |
60 |
11 |
Senior |
Very happy! :D |
Kinda reminds me of my rating...
Milestones
9/16/2019: Finally reached blue, but people who placed below me became purple?? aight imma head out.
10/16/2019: Ranked up to higher blue... BUT GUESS WHAT?? PEOPLE ARE TURNING YELLOW AND PURPLE BELOW ME AGAIN!! aight imma head out again.
11/3/2019: Reached purple rating ^_^ Next step, yellow! :D
12/3/2019: Higher purple! One more contest and I'm expected to be yellow!
12/31/2019: Joined yellow/master gang! 👲
2/12/2020: Did CCC and got
60/75
^_^
:(){ :|:& };:
C++ Template:
#include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define pb push_back
#define FILL(a, b) memset(a, b, sizeof(a))
typedef long long int ll;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef vector<int> vi;
typedef vector<pii> vii;
const int INF = 0x3f3f3f3f;
const ll INFL = 0x3f3f3f3f3f3f3f3fLL;
const int MOD = 1e9 + 7;
const int MAX = 1e5 + 5;
ll gcd(ll a, ll b){return b == 0 ? a : gcd(b, a % b);}
ll lcm(ll a, ll b){return a*b/gcd(a,b);}
ll mul(ll a,ll b, ll M){if(b==0)return 0;ll t=mul(a,b/2,M);if(b&1)return (t+t+a)%M;return (t+t)%M;}
ll fpow(ll a, ll b, ll M){if(b==0)return 1;ll t=fpow(a,b/2,M);if(b&1)return mul(mul(t,t,M),a,M)%M;return mul(t,t,M)%M;}
ll divmod(ll i, ll j, ll mod){i%=mod,j%=mod;return i*fpow(j,mod-2,mod)%mod;}
int main() {
cin.sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
exit(1);
return 0;
}
Java Template:
import java.util.*;
import java.io.*;
public class Main {
static BufferedReader br;
static PrintWriter out;
static StringTokenizer st;
public static void main(String[] args) throws IOException {
br = new BufferedReader(new InputStreamReader(System.in));
out = new PrintWriter(new OutputStreamWriter(System.out));
}
static String next () throws IOException {
while (st == null || !st.hasMoreTokens())
st = new StringTokenizer(br.readLine().trim());
return st.nextToken();
}
static long readLong () throws IOException {
return Long.parseLong(next());
}
static int readInt () throws IOException {
return Integer.parseInt(next());
}
static double readDouble () throws IOException {
return Double.parseDouble(next());
}
static char readCharacter () throws IOException {
return next().charAt(0);
}
static String readLine () throws IOException {
return br.readLine().trim();
}
}
He soon realizes that he should probably focus on actually practicing harder questions, rather than trying to be the fastest on easy ones
Date | Rating | Rank | Position | Rating Change |
---|---|---|---|---|
2/12/2018 |
793 |
Newbie |
#63 |
-407 |
2/12/2018 |
867 |
Newbie |
#26 |
+74 |
3/14/2018 |
778 |
Newbie |
#75 |
-89 |
10/10/2018 |
882 |
Newbie |
#67 |
+104 |
11/27/2018 |
937 |
Newbie |
#54 |
+55 |
1/6/2019 |
1066 |
Amateur |
#75 |
+129 |
2/19/2019 |
1097 |
Amateur |
#112 |
+55 |
5/6/2019 |
1094 |
Amateur |
#71 |
-3 |
9/3/2019 |
1136 |
Amateur |
#64 |
+42 |
9/16/2019 |
1276 |
Expert |
#41 |
+140 |
10/14/2019 |
1427 |
Expert |
#33 |
+151 |
11/3/2019 |
1564 |
Candidate Master |
#16 |
+137 |
12/2/2019 |
1696 |
Candidate Master |
#27 |
+132 |
1/1/2020 |
1809 |
Master |
#25 |
+113 |
3/30/2020 |
1914 |
Master |
#27 |
+105 |
4/29/2020 |
1967 |
Master |
#29 |
+53 |
10/13/2020 |
2049 |
Master |
#22 |
+82 |
12/7/2020 |
2112 |
Master |
#19 |
+63 |
SIQwVocytp/f5SbyrrZx9PR9IJJQlNJpsTJlfLeXsMM=