ACODE - Alphacode


Alice and Bob need to send secret messages to each other and are discussing ways to encode their messages:

Alice: “Let’s just use a very simple code: We’ll assign ‘A’ the code word 1, ‘B’ will be 2, and so on down to ‘Z’ being assigned 26.”

Bob: “That’s a stupid code, Alice. Suppose I send you the word ‘BEAN’ encoded as 25114. You could decode that in many different ways!”

Alice: “Sure you could, but what words would you get? Other than ‘BEAN’, you’d get ‘BEAAD’, ‘YAAD’, ‘YAN’, ‘YKD’ and ‘BEKD’. I think you would be able to figure out the correct decoding. And why would you send me the word ‘BEAN’ anyway?”

Bob: “OK, maybe that’s a bad example, but I bet you that if you got a string of length 5000 there would be tons of different decodings and with that many you would find at least two different ones that would make sense.”

Alice: “How many different decodings?”

Bob: “Jillions!”

For some reason, Alice is still unconvinced by Bob’s argument, so she requires a program that will determine how many decodings there can be for a given string using her code.

Input

Input will consist of multiple input sets. Each set will consist of a single line of at most 5000 digits representing a valid encryption (for example, no line will begin with a 0). There will be no spaces between the digits. An input line of ‘0’ will terminate the input and should not be processed.

Output

For each input set, output the number of possible decodings for the input string. All answers will be within the range of a 64 bit signed integer.

Example

Input:
25114
1111111111
3333333333
0

Output:
6
89
1

hide comments
hanstan: 2016-04-05 10:24:46

Recursion 0.00s AC.
Beware of 0 in input...

i_love_coding: 2016-03-22 22:08:18

Try to maintain zeroes in hands..if you don't , you will surely got so many WA's.

itissabbir: 2016-03-22 20:21:34

AC in 0.00s top down.. take care about 0 ... tricky one

blackjack123: 2016-03-13 05:27:12

anyone explain 11101 test case . why is equal to 2
three possibility 1+11 , 11+ 1, 1+1+1 because of zero not processed further , that what i get ,

mahi_12: 2016-02-29 14:55:54

finally ac

Vivek Mangal: 2016-02-23 21:29:12

Beware of 0's in input.

laid_to_rest: 2016-02-22 15:52:11

**BF**

Last edit: 2016-02-22 15:52:31
kunal1996: 2016-02-11 10:47:16

is 200202 a valid input

Rajat Jain: 2016-01-30 08:04:17

Nice question.. take care of 0 in input... DP.. AC..

mohd_sharique: 2016-01-28 15:28:52

I dont get the reason as to why 101 will give output as 1. Can't it have two possible ans: JA{10,1} and AA{1,01} ?


Added by:Adrian Kuegel
Date:2005-07-09
Time limit:0.5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:ACM East Central North America Regional Programming Contest 2004