CF1195D2.Submarine in the Rybinsk Sea (hard edition)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This problem differs from the previous one only in the absence of the constraint on the equal length of all numbers a1,a2,,ana_1, a_2, \dots, a_n .

A team of SIS students is going to make a trip on a submarine. Their target is an ancient treasure in a sunken ship lying on the bottom of the Great Rybinsk sea. Unfortunately, the students don't know the coordinates of the ship, so they asked Meshanya (who is a hereditary mage) to help them. He agreed to help them, but only if they solve his problem.

Let's denote a function that alternates digits of two numbers f(a1a2ap1ap,b1b2bq1bq)f(a_1 a_2 \dots a_{p - 1} a_p, b_1 b_2 \dots b_{q - 1} b_q) , where a1apa_1 \dots a_p and b1bqb_1 \dots b_q are digits of two integers written in the decimal notation without leading zeros.

In other words, the function f(x,y)f(x, y) alternately shuffles the digits of the numbers xx and yy by writing them from the lowest digits to the older ones, starting with the number yy . The result of the function is also built from right to left (that is, from the lower digits to the older ones). If the digits of one of the arguments have ended, then the remaining digits of the other argument are written out. Familiarize with examples and formal definitions of the function below.

For example: $$$$f(1111, 2222) = 12121212 $$ $$ f(7777, 888) = 7787878 $$ $$ f(33, 44444) = 4443434 $$ $$ f(555, 6) = 5556 $$ $$ f(111, 2222) = 2121212 $$

Formally,

  • if pgeqp \\ge q then f(a_1dotsa_p,b_1dotsb_q)=a_1a_2dotsa_pq+1b_1a_pq+2b_2dotsa_p1b_q1a_pb_qf(a\_1 \\dots a\_p, b\_1 \\dots b\_q) = a\_1 a\_2 \\dots a\_{p - q + 1} b\_1 a\_{p - q + 2} b\_2 \\dots a\_{p - 1} b\_{q - 1} a\_p b\_q ;
  • if p<qp < q then f(a_1dotsa_p,b_1dotsb_q)=b_1b_2dotsb_qpa_1b_qp+1a_2dotsa_p1b_q1a_pb_qf(a\_1 \\dots a\_p, b\_1 \\dots b\_q) = b\_1 b\_2 \\dots b\_{q - p} a\_1 b\_{q - p + 1} a\_2 \\dots a\_{p - 1} b\_{q - 1} a\_p b\_q .

Mishanya gives you an array consisting of nn integers a_ia\_i , your task is to help students to calculate sum_i=1nsum_j=1nf(a_i,a_j)\\sum\_{i = 1}^{n}\\sum\_{j = 1}^{n} f(a\_i, a\_j) modulo 998,244,353998\\,244\\,353$$.

输入格式

The first line of the input contains a single integer nn ( 1n1000001 \le n \le 100\,000 ) — the number of elements in the array. The second line of the input contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the elements of the array.

输出格式

Print the answer modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    3
    12 3 45
    

    输出#1

    12330
  • 输入#2

    2
    123 456
    

    输出#2

    1115598
  • 输入#3

    1
    1

    输出#3

    11
  • 输入#4

    5
    1000000000 1000000000 1000000000 1000000000 1000000000

    输出#4

    265359409
首页