本文主要是介绍2020小米网络赛第一场 Smart Browser,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
签到不解释
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>using namespace std;typedef long long ll;const int mod = 1e9 + 7;
const int maxn = 1e5 + 7;char s[maxn];
int main() {scanf("%s",s + 1);int n = strlen(s + 1);int cnt = 0;int ans = 0;for(int i = 1;i <= n + 1;i++) {if(s[i] == 'w') {cnt++;} else {if(cnt) ans += cnt * 2 - 1;cnt = 0;}}printf("%d\n",ans);return 0;
}
这篇关于2020小米网络赛第一场 Smart Browser的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!