首页 > 其他 > 详细

codeforces

时间:2019-04-10 23:36:33      阅读:193      评论:0      收藏:0      [点我收藏+]

A.Even Substrings

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
	int n;
	cin>>n;
	string str;
	cin>>str;
	long long ans=0;
	for(int i=0;i<n;i++)
	{
		if((str[i]-‘0‘)%2==0)
		ans+=(i+1);
		else continue;
	}
	cout<<ans<<endl;
	return 0;
 }

codeforces

原文:https://www.cnblogs.com/WABoom/p/10686946.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!