比赛 |
2025暑期集训第5场图论专场 |
评测结果 |
WWWWWWWWWWW |
题目名称 |
激光 |
最终得分 |
0 |
用户昵称 |
rb_tree |
运行时间 |
0.032 s |
代码语言 |
C++ |
内存使用 |
3.63 MiB |
提交时间 |
2025-07-09 11:29:13 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
inline int read()
{
int x=0,w=1;
char ch=0;
while(ch<'0'||ch>'9')
{
if(ch=='-') w=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9')
{
x=(x<<1)+(x<<3)+(ch^48);
ch=getchar();
}
return x*w;
}
inline void write(int x)
{
if(x<0)
{
x=-x;
putchar('-');
}
if(x>=10) write(x/10);
putchar((x%10)^48);
}
int main()
{
freopen("lasers.in","r",stdin);
freopen("lasers.out","w",stdout);
write(-1);
fclose(stdin);
fclose(stdout);
return 0;
}