专栏文章
框架
个人记录参与者 1已保存评论 0
文章操作
快速查看文章及其快照的属性,并进行相关操作。
- 当前评论
- 0 条
- 当前快照
- 1 份
- 快照标识符
- @min89qkx
- 此快照首次捕获于
- 2025/12/01 22:11 3 个月前
- 此快照最后确认于
- 2025/12/01 22:11 3 个月前
CPP
#include<bits/stdc++.h>
#define for1(a,b,c) for(auto a=b;a<=c;++a)
#define for2(a,b,c) for(auto a=b;a>=c;--a)
#define for3(a,b) for(auto a:b)
#define for4(a,b,c) for(auto [a,b]:c)
#define for5(a,b,c,d) for(auto a=b;a<=c;a+=d)
#define for6(a,b,c,d) for(auto a=b;a>=c;a-=d)
#define fi first
#define se second
using namespace std;
using ll=long long;
using ld=long double;
const = ;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
return 0;
}
相关推荐
评论
共 0 条评论,欢迎与作者交流。
正在加载评论...