codeforces 628 B. New Skateboard (数学-被4整除)

来源:互联网 发布:cms企业建站系统 编辑:程序博客网 时间:2024/05/16 10:56
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 by4.

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
0,4,8,可被4整除;
一个数的最后两位能被4整除,那么这个数能被4整除。
#include<cstdio>#include<cstring>#define M 300000+10 char str[M]; int main(){scanf("%s",&str);int len=strlen(str);long long cnt=0;for(int i=1;i<len;i++){int a=str[i-1]-'0';int b=str[i]-'0';int ans=a*10+b;if(ans%4==0)cnt+=i; }  for(int i=0;i<len;i++) { int a=str[i]-'0'; if(a%4==0) cnt++; } printf("%lld\n",cnt); return 0;}


0 0
原创粉丝点击