Codeforces 628BNew Skateboard【数学】

    xiaoxiao2021-04-19  264

    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 4: 12, 4, 24 and 124. For the string 04 the answer is three: 0, 4, 04.

    As input/output can reach huge size it is recommended to use fast input/output methods: for example, prefer to use gets/scanf/printf instead 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 in Java you can use long integer type.

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

    题目大意:

    给你一个字符串,让你找到其中%4==0子串的个数。

    思路:

    如果一个数字的后两位%4==0,那么对应就可以作为一个结果。

    Ac代码:

    #include<stdio.h> #include<string.h> using namespace std; #define ll __int64 char a[300800]; int main() { while(~scanf("%s",a)) { int n=strlen(a); ll output=0; for(int i=0;i<n;i++) { if(a[i]%4==0)output++; if(i>=1) { if(((a[i-1]-'0')*10+(a[i]-'0'))%4==0)output+=i; } } printf("%I64d\n",output); } }

    转载请注明原文地址: https://ju.6miu.com/read-676288.html

    最新回复(0)