CF133B.Unary

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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

Brainfuck programs use 8 commands: "+", "-", "[", "]", "<", ">", "." 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:

  • ">" 1000,
  • "<" 1001,
  • "+" 1010,
  • "-" 1011,
  • "." 1100,
  • "," 1101,
  • "[" 1110,
  • "]" 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 10000031000003 (106+3)(10^{6}+3) .

输入格式

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

输出格式

Output the size of the equivalent Unary program modulo 10000031000003 (106+3)(10^{6}+3) .

输入输出样例

  • 输入#1

    ,.
    

    输出#1

    220
    
  • 输入#2

    ++++[&gt;,.&lt;-]
    

    输出#2

    61425
    

说明/提示

To write a number nn in unary numeral system, one simply has to write 1 nn 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.

首页