結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー titiatitia
提出日時 2024-04-22 03:04:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 376,460 KB
最終ジャッジ日時 2024-10-14 01:56:13
合計ジャッジ時間 30,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
52,352 KB
testcase_17 AC 1,392 ms
260,772 KB
testcase_18 AC 1,381 ms
256,388 KB
testcase_19 AC 45 ms
60,032 KB
testcase_20 AC 45 ms
59,904 KB
testcase_21 AC 47 ms
60,288 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,673 ms
313,908 KB
testcase_28 AC 1,695 ms
356,328 KB
testcase_29 AC 1,644 ms
364,376 KB
testcase_30 AC 1,687 ms
261,136 KB
testcase_31 AC 1,781 ms
362,776 KB
testcase_32 AC 1,634 ms
319,344 KB
testcase_33 AC 1,181 ms
260,276 KB
testcase_34 AC 1,358 ms
255,668 KB
testcase_35 AC 811 ms
201,380 KB
testcase_36 AC 912 ms
206,192 KB
testcase_37 AC 1,182 ms
251,516 KB
testcase_38 AC 1,152 ms
257,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

mod=998244353

N=int(input())
A=input().split()

for i in range(N):
    A[i]=list(map(int,list(A[i])))

B=[]
for s in A:
    X=s[:]
    while len(X)<18:
        X+=s
    B.append((X,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+X[u]*T)%mod
    T=T*10%mod

print(ANS)
0