比赛 |
防止颓废的小练习v0.2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
机器翻译 |
最终得分 |
100 |
用户昵称 |
要要要不吃药 |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.32 MiB |
提交时间 |
2016-10-18 17:13:12 |
显示代码纯文本
#include<iostream>
#include<cstdio>
int word[2016];
using namespace std;
bool compain(int earlier,int later){
for(int i=0;i<later;i++){
if(word[i]==earlier)return true;
}
return false;
}
int main(){
freopen("translate.in","r",stdin);
freopen("translate.out","w",stdout);
int mem,interal,tm,wor,ans=0;
tm=0;
scanf("%d%d",&interal,&mem);
for(int i=0;i<2016;i++)word[i]=-1;
for(int i=0;i<mem;i++){
scanf("%d",&wor);
if(tm>=interal){
tm=0;
}
if(!compain(wor,interal)){
ans++;
word[tm]=wor;
tm++;
}
}
cout<<ans;
return 0;
}