竞赛
考级
#include<bits/stdc++.h> using namespace std; int main() { double th; cin >> th; string s,t; cin >> s >> t; int a=0; for (int i=0;i<s.size();i++) a+=(s[i]==t[i]); if (a*1.0/s.size()>=th) cout << "yes"; else cout << "no"; return 0; }
天之神—樊珀瑞