@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;
}