本人名字首字母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; }