結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー rlangevinrlangevin
提出日時 2024-04-20 00:32:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 146,028 KB
最終ジャッジ日時 2024-10-11 19:33:35
合計ジャッジ時間 14,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,248 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
53,716 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 42 ms
53,504 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 42 ms
53,632 KB
testcase_15 AC 42 ms
53,504 KB
testcase_16 AC 41 ms
53,760 KB
testcase_17 AC 597 ms
128,620 KB
testcase_18 AC 569 ms
127,992 KB
testcase_19 AC 43 ms
54,656 KB
testcase_20 AC 42 ms
54,656 KB
testcase_21 AC 44 ms
54,784 KB
testcase_22 AC 640 ms
140,164 KB
testcase_23 AC 645 ms
140,064 KB
testcase_24 AC 652 ms
140,004 KB
testcase_25 AC 644 ms
140,152 KB
testcase_26 AC 643 ms
140,088 KB
testcase_27 AC 668 ms
146,028 KB
testcase_28 AC 652 ms
140,480 KB
testcase_29 AC 648 ms
141,636 KB
testcase_30 AC 646 ms
143,280 KB
testcase_31 AC 648 ms
144,796 KB
testcase_32 AC 629 ms
138,876 KB
testcase_33 AC 466 ms
119,804 KB
testcase_34 AC 557 ms
131,720 KB
testcase_35 AC 354 ms
105,720 KB
testcase_36 AC 386 ms
107,068 KB
testcase_37 AC 508 ms
121,552 KB
testcase_38 AC 519 ms
122,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def cmp_to_key(a, b):
    return a + b <= b + 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(input().split())
A = mergeSort(A)
ans = 0
mod = 998244353
for a in A:
    ans *= pow(10, len(a), mod)
    ans += int(a)
    ans %= mod
    
print(ans)
0