关于Svemit

Svemit / 2023-06-08 / 原文

  • 关于我:坐标湖南,某不知名学校,初三菜鸡oier
  • 博客:用来写笔记,题解,一般不会上锁

luogu
codeforces
cf rating
atcoder
atcoder rating

缺省源

#include <bits/stdc++.h>
#define L(i, j, k) for(int i = (j); i <= (k); i ++)
#define R(i, j, k) for(int i = (j); i >= (k); i --)
using namespace std;
typedef long long LL;
const int N = 1e5 + 5, INF = 0x3f3f3f3f;
const LL mod = 1e9 + 7;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
 	
    return 0;
}