Educational Codeforces Round 8-B. New Skateboard

原题链接

B. New Skateboard
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Max wants to buy a new skateboard. He has calculated the amount of money that is needed to buy a new skateboard. He left a calculator on the floor and went to ask some money from his parents. Meanwhile his little brother Yusuf came and started to press the keys randomly. Unfortunately Max has forgotten the number which he had calculated. The only thing he knows is that the number is divisible by 4.

You are given a string s consisting of digits (the number on the display of the calculator after Yusuf randomly pressed the keys). Your task is to find the number of substrings which are divisible by 4. A substring can start with a zero.

A substring of a string is a nonempty sequence of consecutive characters.

For example if string s is 124 then we have four substrings that are divisible by 412424 and 124. For the string 04 the answer is three: 0404.

As input/output can reach huge size it is recommended to use fast input/output methods: for example, prefer to usegets/scanf/printf instead of getline/cin/cout in C++, prefer to use BufferedReader/PrintWriter instead ofScanner/System.out in Java.

Input

The only line contains string s (1 ≤ |s| ≤ 3·105). The string s contains only digits from 0 to 9.

Output

Print integer a — the number of substrings of the string s that are divisible by 4.

Note that the answer can be huge, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you can use long integer type.

Examples
input
124
output
4
input
04
output
3
input
5810438174
output
9

用dp[i]表示以str[i]字符结尾的数有几个能被4整除,遍历字符串str, 

1.若str[i]是2或6表明还需要奇数个2加上str[i]才能被4整除,所以若str[i-1]是奇数,则dp[i] = i + 1;

2.若str[i]为0, 4, 6,则dp[i] += 1,若str[i-1]为偶数或0则dp[i] += i;

#include <bits/stdc++.h>
#define INF 1e18
#define maxn 300005
using namespace std;
typedef long long ll;

char str[maxn];
ll dp[maxn];
int main(){
	
//	freopen("in.txt", "r", stdin);
	ll ans = 0;
	scanf("%s", str);
	for(int i = 0; str[i]; i++){
		if((str[i] - '0') % 4 == 0){
            dp[i] = 1;
			if(i > 0 && (str[i-1] - '0') % 2 == 0)
			 dp[i] = i + 1;
		}
		if(i > 0 && (str[i] == '2' || str[i] == '6') && (str[i-1] - '0') % 2 == 1){
			dp[i] = i;
		}
		ans += dp[i];
	}
	printf("%I64d\n", ans);
	
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值