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

Copy
124
output

Copy
4
input

Copy
04
output

Copy
3
input

Copy
5810438174
output

Copy
9

题目问的是子串不是子序列
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set>
#include <queue>
#include <map>
#include <sstream>
#include <cstdio>
#include <cstring>
#include <numeric>
#include <cmath>
#include <unordered_set>
#include <unordered_map>
#include <xfunctional>
#define ll long long
#define mod 998244353
using namespace std;
int dir[][] = { {,},{,-},{-,},{,} };
const int maxn = ;
const long long inf = 0x7f7f7f7f7f7f7f7f; int main()
{
string s;
cin>>s;
ll ans = ;
for (int i = ; i < s.size(); i++)
{
if (s[i] % == )
ans++;
if (i >= )
{
if (((s[i - ] - '') * + (s[i] - '')) % == )
ans += i;
}
}
cout<<ans;
return ;
}

最新文章

  1. angularJs之http后台访问数据
  2. 如何利用Direct NFS克隆数据库
  3. eclipse与myeclipse恢复已删除的文件和代码
  4. 【POJ3237】Tree(树链剖分)
  5. 通过 SuperObject 生成 json string
  6. LeetCode_Unique Binary Search Trees
  7. PowerDesigner中在生成的数据库脚本中用name列替换comment列作为字段描述的方法
  8. ios逆向过程中lldb调试技巧-po篇
  9. react-native-echarts在打包时出现的坑
  10. 使用Percona Data Recovery Tool for InnoDB恢复数据
  11. JavaScript-client、offset、scroll、定时器
  12. Microsoft office 2019 正式版镜像下载
  13. Java 实现 HDFS 文件基本操作
  14. Expm 2_2 查找中项问题
  15. windows 下 MySql5.6主从复制
  16. 【转载】细说 Form (表单)
  17. day40 数据结构-算法(二)
  18. 模块和处理程序之通过HttpModule和HttpHandler拦截入站HTTP请求执行指定托管代码模块
  19. Java集合(3)一 红黑树、TreeMap与TreeSet(上)
  20. 反射与annotation

热门文章

  1. app简单压力测试
  2. MySQL基础入门使用和命令的使用
  3. Case Study - 用户复购行为预测
  4. Centos 安装 Go 编译环境
  5. JavaSE学习笔记(4)---抽象类和接口
  6. 网络共享服务(三)之SAMBA
  7. 了解SIT和UAT的基本内涵
  8. Ubuntu在当前用户目录下安装python 包
  9. [CF1303C] Perfect Keyboard - DFS
  10. SYZOJP186 你猜猜是不是DP 二分+hash解法