結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー titiatitia
提出日時 2024-04-22 03:02:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 190,660 KB
最終ジャッジ日時 2024-10-14 01:53:02
合計ジャッジ時間 37,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 31 ms
10,496 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 3,032 ms
120,932 KB
testcase_18 AC 3,205 ms
126,120 KB
testcase_19 AC 32 ms
10,496 KB
testcase_20 AC 32 ms
10,496 KB
testcase_21 AC 32 ms
10,496 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 4,765 ms
161,884 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 4,288 ms
151,684 KB
testcase_31 TLE -
testcase_32 AC 4,776 ms
162,968 KB
testcase_33 AC 2,923 ms
112,032 KB
testcase_34 AC 3,996 ms
138,000 KB
testcase_35 AC 1,742 ms
76,816 KB
testcase_36 AC 1,896 ms
82,276 KB
testcase_37 AC 3,399 ms
122,944 KB
testcase_38 AC 3,162 ms
115,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

mod=998244353

N=int(input())
A=list(map(int,input().split()))

A=list(map(str,A))

B=[]
for s in A:
    X=list(s)
    while len(X)<20:
        X+=list(s)
    B.append((X,list(s)))

B.sort(key=itemgetter(0))

X=[]
for _,s in B:
    X+=s


ANS=0
T=1
for i in range(len(X)):
    u=len(X)-1-i
    ANS=(ANS+int(X[u])*T)%mod
    T=T*10%mod

print(ANS)
0