省流:忘记打了。其实是 dfs 爆搜专场。
比赛链接:ABC374
Problem A:
#include <bits/stdc++.h>
using namespace std;
int main(){
string S;
cin>>S;
if(S[(int)S.size()-3]=='s' && S[(int)S.size()-2]=='e' && S[(int)S.size()-1]=='n')
cout<<"Yes"<<endl;
else
cout<<"No"<<endl;
return 0;
}
Problem B:
#include <bits/stdc++.h>
using namespace std;
int main(){
string S,T;
cin>>S>>T;
if(S==T){
cout<<0<<endl;
return 0;
}
for(int i=0;i<max(S.size(),T.size());i++){
if(i==S.size() || i==T.

最低0.47元/天 解锁文章
1167

被折叠的 条评论
为什么被折叠?



