| 比赛 |
2026.9.5 |
评测结果 |
WAAAAAWWWWWWWWWWWWWWWWWWW |
| 题目名称 |
Tree Decorations |
最终得分 |
20 |
| 用户昵称 |
djyqjy |
运行时间 |
0.072 s |
| 代码语言 |
C++ |
内存使用 |
3.63 MiB |
| 提交时间 |
2026-09-05 12:15:13 |
显示代码纯文本
#include<bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
using namespace std;
void chkmax(int &a,int b){a=max(a,b);}
void chkmin(int &a,int b){a=min(a,b);}
inline int re()
{
char c=getchar();
int x=0,f=1;
while(c<'0'||c>'9'){if(c=='-') f=-1;c=getchar();}
while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
return x*f;
}
int main()
{
freopen("Decorations.in","r",stdin);
freopen("Decorations.out","w",stdout);
printf("1\n");
return 0;
}