记录编号 425653 评测结果 AAAAA
题目名称 连续出现的字符 最终得分 100
用户昵称 GravatarJustWB 是否通过 通过
代码语言 C++ 运行时间 0.001 s
提交时间 2017-07-15 16:40:38 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
int k;
string c;
int main()
{
	freopen("zlxzf.in","r",stdin);
	freopen("zlxzf.out","w",stdout);
	scanf("%d",&k);
	cin>>c;
	char t=0;int tot=1;
	for(int i=0;i<c.length();i++)
	{
		if(c[i]==t)tot++;
		else if(tot>=k)
		{
			printf("%c",t);
			return 0;
		}
		else
		{
			t=c[i];
			tot=1;
		}
	}
	if(tot>=k)printf("%c",t);
	else printf("No");
	return 0;
}