题解
2023-08-15 10:35:59
发布于:浙江
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
double aa;
cin>>aa;
string a,b;
cin>>a>>b;
int c=0;
for(int i=0;i<a.length();i++){
if(a[i]==b[i]){
c++;
}
}
if(double(c)/a.length()>=aa)cout<<"yes";
else cout<<"no";
return 0;
}
这里空空如也
有帮助,赞一个