結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー titiatitia
提出日時 2024-04-22 03:06:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,722 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 370,884 KB
最終ジャッジ日時 2024-10-14 01:58:08
合計ジャッジ時間 29,289 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,924 KB
testcase_01 AC 42 ms
53,912 KB
testcase_02 AC 38 ms
54,028 KB
testcase_03 AC 37 ms
53,956 KB
testcase_04 AC 38 ms
53,252 KB
testcase_05 AC 37 ms
53,544 KB
testcase_06 AC 37 ms
54,000 KB
testcase_07 AC 37 ms
52,408 KB
testcase_08 AC 37 ms
52,820 KB
testcase_09 AC 36 ms
52,628 KB
testcase_10 AC 36 ms
53,616 KB
testcase_11 AC 37 ms
52,756 KB
testcase_12 AC 37 ms
53,124 KB
testcase_13 AC 37 ms
53,032 KB
testcase_14 AC 36 ms
53,372 KB
testcase_15 AC 36 ms
53,352 KB
testcase_16 AC 37 ms
52,444 KB
testcase_17 AC 1,294 ms
256,484 KB
testcase_18 AC 1,312 ms
258,780 KB
testcase_19 AC 44 ms
61,608 KB
testcase_20 AC 44 ms
60,188 KB
testcase_21 AC 44 ms
61,876 KB
testcase_22 AC 1,689 ms
369,648 KB
testcase_23 AC 1,637 ms
368,648 KB
testcase_24 AC 1,722 ms
368,948 KB
testcase_25 AC 1,656 ms
369,172 KB
testcase_26 AC 1,634 ms
369,856 KB
testcase_27 AC 1,602 ms
352,780 KB
testcase_28 AC 1,632 ms
367,136 KB
testcase_29 AC 1,671 ms
354,268 KB
testcase_30 AC 1,599 ms
306,624 KB
testcase_31 AC 1,617 ms
370,884 KB
testcase_32 AC 1,507 ms
351,656 KB
testcase_33 AC 1,057 ms
254,544 KB
testcase_34 AC 1,349 ms
287,080 KB
testcase_35 AC 753 ms
207,400 KB
testcase_36 AC 838 ms
211,584 KB
testcase_37 AC 1,094 ms
256,732 KB
testcase_38 AC 1,080 ms
255,252 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)<19:
        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