結果
| 問題 |
No.2734 Addition and Multiplication in yukicoder (Hard)
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-04-20 00:37:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 683 ms / 5,000 ms |
| コード長 | 789 bytes |
| コンパイル時間 | 652 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 145,884 KB |
| 最終ジャッジ日時 | 2024-10-11 19:36:48 |
| 合計ジャッジ時間 | 14,105 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 |
ソースコード
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
M = 20
ten = [1] * M
for i in range(1, M):
ten[i] = (ten[i - 1] * 10) % mod
for a in A:
ans = (ans * ten[len(a)] + int(a)) % mod
print(ans)
rlangevin