#ABC164D. Multiple of 2019
Multiple of 2019
题目描述
Given is a string consisting of digits from 1
through 9
.
Find the number of pairs of integers () that satisfy the following condition:
Condition: In base ten, the -th through -th characters of form an integer that is a multiple of .
给定的字符串 由从
1
到9
的数字组成。求满足以下条件的整数对 ( ) 的个数:
条件:在十进制中, 的 -th 到 -th 字符组成的整数是 的倍数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的整数对 ( ) 的个数。
样例 #1
样例输入 #1
1817181712114
样例输出 #1
3
样例 #2
样例输入 #2
14282668646
样例输出 #2
2
样例 #3
样例输入 #3
2119
样例输出 #3
0
说明
数据规模与约定
- 是一个由从
1
到9
的数字组成的字符串。
样例 解释
三对数据-- 、 和 --满足条件。- 满足条件。
样例 解释
没有符合条件的配对。