比赛 |
20160415 |
评测结果 |
WWWWWWWWWW |
题目名称 |
能量网络 |
最终得分 |
0 |
用户昵称 |
WAHT |
运行时间 |
0.017 s |
代码语言 |
C++ |
内存使用 |
0.76 MiB |
提交时间 |
2016-04-15 11:59:16 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>
#define ll long long
using namespace std;
const int maxn=300000;
ll read()
{
ll x=0;
char ch=getchar();
while(ch>'9'||ch<'0') ch=getchar();
while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
return x;
}
int n,K;
char s[110][1010];
int p[110][1010],len[110];
int main()
{
freopen("energynet.in","r",stdin);
freopen("energynet.out","w",stdout);
cout<<1<<endl;
return 0;
}