CF1005D.Polycarp and Div 3

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp likes numbers that are divisible by 3.

He has a huge number ss . Polycarp wants to cut from it the maximum number of numbers that are divisible by 33 . To do this, he makes an arbitrary number of vertical cuts between pairs of adjacent digits. As a result, after mm such cuts, there will be m+1m+1 parts in total. Polycarp analyzes each of the obtained numbers and finds the number of those that are divisible by 33 .

For example, if the original number is s=3121s=3121 , then Polycarp can cut it into three parts with two cuts: 31213|1|21 . As a result, he will get two numbers that are divisible by 33 .

Polycarp can make an arbitrary number of vertical cuts, where each cut is made between a pair of adjacent digits. The resulting numbers cannot contain extra leading zeroes (that is, the number can begin with 0 if and only if this number is exactly one character '0'). For example, 007, 01 and 00099 are not valid numbers, but 90, 0 and 10001 are valid.

What is the maximum number of numbers divisible by 33 that Polycarp can obtain?

输入格式

The first line of the input contains a positive integer ss . The number of digits of the number ss is between 11 and 21052\cdot10^5 , inclusive. The first (leftmost) digit is not equal to 0.

输出格式

Print the maximum number of numbers divisible by 33 that Polycarp can get by making vertical cuts in the given number ss .

输入输出样例

  • 输入#1

    3121
    

    输出#1

    2
    
  • 输入#2

    6
    

    输出#2

    1
    
  • 输入#3

    1000000000000000000000000000000000
    

    输出#3

    33
    
  • 输入#4

    201920181
    

    输出#4

    4
    

说明/提示

In the first example, an example set of optimal cuts on the number is 3|1|21.

In the second example, you do not need to make any cuts. The specified number 6 forms one number that is divisible by 33 .

In the third example, cuts must be made between each pair of digits. As a result, Polycarp gets one digit 1 and 3333 digits 0. Each of the 3333 digits 0 forms a number that is divisible by 33 .

In the fourth example, an example set of optimal cuts is 2|0|1|9|201|81. The numbers 00 , 99 , 201201 and 8181 are divisible by 33 .

首页