About me & 留言板

时间:2021-04-10 14:36:59

本人名字首字母gzy,就读于gryz,是高二在读生,也是一名oier。

老婆:远近渔。

爱好:

各种体育类项目,(但是不精通,不会打台球),喜欢摄影作品,喜欢听rap和摇滚,也喜欢一些描述生活英文歌曲(现在的口水歌越来越多了,呸)。

患过声带炎,声音低沉且有些沙哑,不太会唱歌(打算玩全民K歌?没时间了)。

曾经热爱生活,现在由于学业耽误了。

非常喜欢《流浪地球》,以前没怎么去过电影院,第一次去电影院支持中国科幻电影。

我的洛谷账号:sdgzy

非常欢迎交友

欢迎加友链

My CODE:

/*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;
}