2 条题解
-
1
#include<bits/stdc++.h> using namespace std; int main() { string s; cin>>s; int len = s.size(); if(len<4) { cout<<s; return 0; } string s1 = s.substr(len-2); string s2 = s.substr(len-2); string t= s; if(s1=="ly"||s1=="er") { t = s.substr(0,len-2); } else if (s2 =="ing") { t=s.substr(0,len-3); } cout<<t; return 0; }
信息
- ID
- 1306
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- (无)
- 递交数
- 62
- 已通过
- 22
- 上传者