70分

tctm136 赵泳羲 2023-04-22 11:39:17 3
#include<bits/stdc++.h>
using namespace std;
int main(){
	float k;
	string a,b;
	int sum;
	cin>>k>>a>>b;
	for(int i=1;i<=a.length();i++){
		if(a[i]==b[i]){
			sum++;
		}
	}
	if(sum*1.0/100>=k){
		cout<<"yes";
	}
	else{
		cout<<"no";
	}
	return 0;
}

过的了样例,但只有70分

{{ vote && vote.total.up }}