結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー rlangevinrlangevin
提出日時 2024-04-19 23:15:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 711 ms / 5,000 ms
コード長 738 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 147,008 KB
最終ジャッジ日時 2024-10-11 17:41:44
合計ジャッジ時間 15,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 46 ms
53,504 KB
testcase_09 AC 46 ms
53,632 KB
testcase_10 AC 45 ms
53,504 KB
testcase_11 AC 45 ms
53,504 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 45 ms
53,376 KB
testcase_14 AC 45 ms
53,376 KB
testcase_15 AC 45 ms
53,504 KB
testcase_16 AC 45 ms
53,376 KB
testcase_17 AC 635 ms
128,372 KB
testcase_18 AC 653 ms
128,700 KB
testcase_19 AC 50 ms
55,296 KB
testcase_20 AC 50 ms
55,040 KB
testcase_21 AC 50 ms
55,040 KB
testcase_22 AC 707 ms
142,332 KB
testcase_23 AC 695 ms
142,296 KB
testcase_24 AC 695 ms
142,060 KB
testcase_25 AC 710 ms
142,076 KB
testcase_26 AC 711 ms
142,200 KB
testcase_27 AC 704 ms
144,368 KB
testcase_28 AC 689 ms
140,092 KB
testcase_29 AC 701 ms
142,712 KB
testcase_30 AC 693 ms
142,304 KB
testcase_31 AC 709 ms
147,008 KB
testcase_32 AC 666 ms
138,924 KB
testcase_33 AC 525 ms
119,636 KB
testcase_34 AC 613 ms
130,112 KB
testcase_35 AC 382 ms
106,240 KB
testcase_36 AC 412 ms
107,364 KB
testcase_37 AC 532 ms
120,716 KB
testcase_38 AC 552 ms
122,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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:
        a = Q[0]
        b = Q[-1]
        if str(a) + str(b) <= str(b) + str(a):
            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())
M = 65
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