結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー rlangevinrlangevin
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 41 ms
54,272 KB
testcase_09 AC 41 ms
54,144 KB
testcase_10 AC 41 ms
54,016 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 41 ms
54,016 KB
testcase_13 AC 41 ms
53,632 KB
testcase_14 AC 41 ms
53,504 KB
testcase_15 AC 40 ms
54,016 KB
testcase_16 AC 41 ms
54,016 KB
testcase_17 AC 671 ms
122,408 KB
testcase_18 AC 676 ms
123,336 KB
testcase_19 AC 46 ms
55,936 KB
testcase_20 AC 46 ms
56,064 KB
testcase_21 AC 46 ms
55,680 KB
testcase_22 AC 932 ms
138,824 KB
testcase_23 AC 914 ms
138,848 KB
testcase_24 AC 926 ms
138,860 KB
testcase_25 AC 988 ms
138,864 KB
testcase_26 AC 940 ms
138,464 KB
testcase_27 AC 836 ms
138,456 KB
testcase_28 AC 884 ms
137,268 KB
testcase_29 AC 879 ms
140,920 KB
testcase_30 AC 787 ms
138,532 KB
testcase_31 AC 900 ms
141,616 KB
testcase_32 AC 828 ms
136,548 KB
testcase_33 AC 585 ms
110,244 KB
testcase_34 AC 716 ms
129,032 KB
testcase_35 AC 400 ms
100,876 KB
testcase_36 AC 430 ms
100,412 KB
testcase_37 AC 636 ms
116,048 KB
testcase_38 AC 620 ms
111,012 KB
権限があれば一括ダウンロードができます

ソースコード

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