Hide

Problem E
Easy Arithmetic

Harry is now a third-year student at Hogwarts School of Witchcraft and Wizardry. Contrary to popular belief, arithmetic (known as Arithmancy in the wizard world) is crucial to becoming a powerful wizard.

For today’s Arithmancy homework, Harry is given a super long expression s of length n, containing digits, the + and - operators. The i-th (1in) character of s is denoted by si.

Harry must answer q queries of the following two types:

  1. ?r: Compute the value of the expression from the -th character to the r-th character, inclusive. As the value of this expression can be very large, Harry must calculate it modulo 998244353.

  2. !ic: Change si to the character c.

Please help Harry!

Input

  • The first line contains n characters representing the expression s (1n105). It is guaranteed that all characters are either digits or the + and - operators, and no two consecutive characters in s are operators.

  • The second line contains q (1q105).

  • In the next q lines, each line contains one query:

    • ?r (1rn): representing a query of the first type. It is guaranteed that sr is a digit.

    • !ic (1in), c is either a digit or + or -: representing a query of the second type. It is guaranteed that after this query, no two consecutive characters are operators.

Output

For each query of the first type, print the value of the expression, modulo 998244353.

Sample Input 1 Sample Output 1
123-456+789
10
? 2 5
? 7 9
? 4 6
! 1 +
! 4 0
? 1 7
! 1 -
? 1 3
? 4 7
? 4 5
19
13
998244308
230456
998244330
456
4
Hide

Please log in to submit a solution to this problem

Log in