天天看点

About me

本人来自 SD 的一个十八线的小县城的小高中,现高二,处于临近退役的边缘。

whk 在班里已经被卷上天了,停课回来后一直处在班垫底的地位。

我好像又停课了,whk 又要拉大了/ll

自 2022 年元旦以来独自享受着 \(20m^2\) 的宿舍,\(50m^2\) 的大机房

现在在准备 2022 年省选,不过实力依旧很屑。

如果您有什么学习上或人生上的问题可以找我聊聊,我会努力去想的。

想和全国各地的 OIer 交朋友,欢迎加 Q:2311605992

缺省源:

/*
Work by: Suzt_ilymtics
Problem: 不知名屑题
Knowledge: 垃圾算法
Time: O(能过)
*/
#include<bits/stdc++.h>
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<queue>
#define LL long long
#define orz cout<<"lkp AK IOI!"<<endl

using namespace std;
const int MAXN = 1e5+5;
const int INF = 1e9+7;
const int mod = 1e9+7;

int read() {
    int s = 0, f = 0;
    char ch = getchar();
    while(!isdigit(ch)) f |= (ch == '-'), ch = getchar();
    while(isdigit(ch)) s = (s << 1) + (s << 3) + ch - '0', ch = getchar();
    return f ? -s : s;
}

int main()
{

    return 0;
}