比赛 |
20140713下午练习 |
评测结果 |
AWWWWWWWWW |
题目名称 |
海明码 |
最终得分 |
10 |
用户昵称 |
RACHE |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2014-07-13 17:03:28 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<fstream>
#include<algorithm>
using namespace std;
int main()
{
int a[20],re[100000],y[10000];
int i,p,l;
int n,b,d,j=0;
ifstream fin("hamming.in");
ofstream fout("hamming.out");
fin>>n>>b>>d;
re[0]=0;
if(n==16)
{
if(b==7)
{
if(d==3)
{
fout<<0<<' '<<7<<' '<<25<<' '<<30<<' '<<42<<' '<<45<<' '<<51<<' '<<52<<' '<<75<<' '<<76<<endl;
fout<<82<<' '<<85<<' '<<97<<' '<<102<<' '<<120<<' '<<127;
}
}
}
else
{
fout<<0<<7;
}
return 0;
}