cf628B 求字符串的字串有多少个能整除4 (找规律)


因为100是4的倍数,那么只要先暴力一遍一位数的,满足要求的+1

然后在暴力2位数的,符合要求的+前缀....

之前训练赛有做过类似的题目,所以....so eazy

Description

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 use gets/scanf/printfinstead of getline/cin/cout in C++, prefer to use BufferedReader/PrintWriter instead of Scanner/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 inJava you can use long integer type.

Sample Input

Input
124
Output
4
Input
04
Output
3
Input
5810438174
Output
9


#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 3*1e5+100;
char s[N];
int main()
{
	int i,j,len,k;
	ll ans=0;
	scanf("%s",s+1);
	len=strlen(s+1);
	for(i=1;i<=len;i++) {
		if((s[i]-'0')%4==0) ans++;
	}
	for(i=1;i+1<=len;i++) {
		int tem=0;
		for(j=i;j<=i+1;j++) {
			tem=tem*10+(s[j]-'0');
		}
		if(tem%4==0) ans+=i;
	}
	printf("%lld\n",ans);
	return 0;
}




你可能感兴趣的:(cf628B 求字符串的字串有多少个能整除4 (找规律))