本人名字首字母gzy,就读于gryz,是高二在读生,也是一名oier。
老婆:远近渔。
爱好:
各类体育类项目,(可是不精通,不会打台球),喜欢摄影做品,喜欢听rap和摇滚,也喜欢一些描述生活英文歌曲(如今的口水歌愈来愈多了,呸)。
患过声带炎,声音低沉且有些沙哑,不太会唱歌(打算玩全民K歌?没时间了)。
曾经热爱生活,如今因为学业耽误了。
很是喜欢《流浪地球》,之前没怎么去过电影院,第一次去电影院支持中国科幻电影。ios
个人洛谷帐号:sdgzy
很是欢迎交友
欢迎加友链
My CODE:ui
/*header*/ #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <cmath> #include <map> #include <queue> #define gc getchar() #define pc putchar #define ll long long #define mk make_pair #define fi first #define se second using std::min; using std::max; using std::swap; inline int gi() { int x = 0,f = 1;char c = gc; while(c < '0' || c > '9') {if(c == '-')f = -1;c = gc;} while(c >= '0' && c <= '9') {x = x * 10 + c - '0';c = gc;}return x * f; }