随便就能骗40分!!!
查看原帖
随便就能骗40分!!!
922253
XieMingHan楼主2024/11/21 19:54
#include <bits/stdc++.h>
using namespace std;
int n,m;
string str[3010],temp[3010];
int main(){
	cin>>n>>m;
	for(int i=1;i<=n;i++){
		cin>>str[i];
		temp[i]=str[i];
	}
	sort(temp+1,temp+1+n);
	for(int i=1;i<=n;i++){
		if(str[i]==temp[1]) cout<<1;
		else cout<<0;
	}
	return 0;
}
~~**这样竟然就能拿40分**~~
2024/11/21 19:54
加载中...