4168.Unary

Time Limit: 1s Memory Limit: 256MB

Unary is a minimalistic Brainfuck dialect in which programs are written using only one token.

Brainfuck programs use 8 commands: "+", "-", "[", "]", " \lt ", " \gt ", "." and "," (their meaning is not important for the purposes of this problem). Unary programs are created from Brainfuck programs using the following algorithm. First, replace each command with a corresponding binary code, using the following conversion table:
" \gt " \rightarrow 1000, " \lt " \rightarrow 1001, "+" \rightarrow 1010, "-" \rightarrow 1011, "." \rightarrow 1100, "," \rightarrow 1101, "[" \rightarrow 1110, "]" \rightarrow 1111.
Next, concatenate the resulting binary codes into one binary number in the same order as in the program. Finally, write this number using unary numeral system - this is the Unary program equivalent to the original Brainfuck one.

You are given a Brainfuck program. Your task is to calculate the size of the equivalent Unary program, and print it modulo 1000003 (106+3).

Input Format(From the terminal/stdin)

The input will consist of a single line p which gives a Brainfuck program. String p will contain between 1 and 100 characters, inclusive. Each character of p will be "+", "-", "[", "]", " \lt ", " \gt ", "." or ",".

Output Format(To the terminal/stdout)

Output the size of the equivalent Unary program modulo 1000003 (106+3).

Sample Input 1

Copy
,.
  \n

Sample Output 1

Copy
220
   \n

Sample Input 2

Copy
++++[ \gt ,. \lefttarrow ]
     ·   ·  ·           · \n

Sample Output 2

Copy
61425
     \n

Hints

To write a number n in unary numeral system, one simply has to write 1 n times. For example, 5 written in unary system will be 11111.

In the first example replacing Brainfuck commands with binary code will give us 1101 1100. After we concatenate the codes, we'll get 11011100 in binary system, or 220 in decimal. That's exactly the number of tokens in the equivalent Unary program.

Submit

请先 登录

© 2025 FAQs