比赛 |
20100927 |
评测结果 |
AAAAAAAAAAWWTTTT |
题目名称 |
翻译玛雅著作 |
最终得分 |
62 |
用户昵称 |
了反取字名我擦 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2010-09-27 20:03:43 |
显示代码纯文本
#include<fstream>
#include<algorithm>
#include<string>
#include<cmath>
using namespace std;
ifstream fi("writing.in");
ofstream fo("writing.out");
int main()
{
int g,s,temp=0,q=0,ans=0;
fi>>g>>s;
string a,b;
fi>>a>>b;
for(int i=0;i<g;i++)
q+=a[i]*a[i];
for(int i=0;i<=s-g;i++)
{
for(int j=0;j<g;j++)
temp+=b[i+j]*b[i+j];
if(temp==q)ans++;
temp=0;
}
fo<<ans;
fi.close();
fo.close();
return 0;
}