题目数据有误
查看原帖
题目数据有误
713562
hahaxiang楼主2023/3/4 12:44

@BFqwq

测试点3、4的n大于3000 提交记录:https://www.luogu.com.cn/record/103603722

代码:

#include<bits/stdc++.h>
using namespace std;
int n,l,S;
string s[30010];
int main()
{
	std::ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin>>n>>l>>S;
	for(int i=1;i<=n;i++)
	{
		cin>>s[i];
		s[i]=" "+s[i];
	}
	if(n>3000)
	cout<<1; 
	else
	cout<<0;
	return 0;
} 
2023/3/4 12:44
加载中...