結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー rlangevin
提出日時 2024-04-20 00:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 988 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,616 KB
最終ジャッジ日時 2024-10-11 19:29:53
合計ジャッジ時間 18,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def cmp_to_key(a, b):
    return str(a) + str(b) <= str(b) + str(a)

def merge(S, T):
    Q = deque()
    for s in S:
        Q.append(s)
    for t in T[::-1]:
        Q.append(t)
    L = []
    while len(Q) >= 2:
        if cmp_to_key(Q[0], Q[-1]):
            L.append(Q.popleft())
        else:
            L.append(Q.pop())
    L.append(Q.pop())
    return L

def mergeSort(A):
    mid = len(A)//2
    if len(A) <= 1:
        return A
    L, R = A[:mid], A[mid:]
    L = mergeSort(L)
    R = mergeSort(R)
    A = merge(L, R)
    return A

N = int(input())
A = list(map(int, input().split()))
A = mergeSort(A)
ans = 0
mod = 998244353
for a in A:
    ans *= pow(10, len(str(a)), mod)
    ans += a
    ans %= mod
    
print(ans)
0