結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-05 17:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,664 ms / 5,000 ms
コード長 1,661 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 130,496 KB
最終ジャッジ日時 2024-10-01 01:21:50
合計ジャッジ時間 39,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,272 KB
testcase_01 AC 50 ms
54,656 KB
testcase_02 AC 50 ms
55,296 KB
testcase_03 AC 50 ms
55,296 KB
testcase_04 AC 50 ms
55,040 KB
testcase_05 AC 48 ms
55,296 KB
testcase_06 AC 50 ms
56,884 KB
testcase_07 AC 48 ms
55,424 KB
testcase_08 AC 51 ms
55,040 KB
testcase_09 AC 49 ms
55,296 KB
testcase_10 AC 51 ms
55,424 KB
testcase_11 AC 49 ms
55,508 KB
testcase_12 AC 52 ms
55,040 KB
testcase_13 AC 50 ms
55,296 KB
testcase_14 AC 49 ms
55,040 KB
testcase_15 AC 48 ms
55,040 KB
testcase_16 AC 50 ms
54,656 KB
testcase_17 AC 1,574 ms
108,232 KB
testcase_18 AC 1,631 ms
123,400 KB
testcase_19 AC 49 ms
57,152 KB
testcase_20 AC 48 ms
56,496 KB
testcase_21 AC 50 ms
56,448 KB
testcase_22 AC 2,416 ms
130,312 KB
testcase_23 AC 2,597 ms
130,360 KB
testcase_24 AC 2,664 ms
130,288 KB
testcase_25 AC 2,279 ms
130,304 KB
testcase_26 AC 2,276 ms
130,496 KB
testcase_27 AC 2,167 ms
127,840 KB
testcase_28 AC 2,290 ms
129,668 KB
testcase_29 AC 2,438 ms
130,188 KB
testcase_30 AC 1,877 ms
126,656 KB
testcase_31 AC 2,372 ms
130,228 KB
testcase_32 AC 2,277 ms
128,408 KB
testcase_33 AC 1,493 ms
114,032 KB
testcase_34 AC 1,823 ms
122,900 KB
testcase_35 AC 845 ms
96,512 KB
testcase_36 AC 880 ms
98,432 KB
testcase_37 AC 1,478 ms
114,964 KB
testcase_38 AC 1,315 ms
114,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# @uni_kakurenbo
# https://github.com/uni-kakurenbo/competitive-programming-workspace
#
# CC0 1.0  http://creativecommons.org/publicdomain/zero/1.0/deed.ja

# #language PyPy #
#region template

import sys
from functools import cmp_to_key


# sys.setrecursionlimit(10**5)
def debug(*args, **opts):
    if "LOCAL_JUDGE" in sys.argv: print(*args, **opts, file=sys.stderr)


class istream():

    def __init__(self, source=sys.stdin):
        self.pos = -1
        self.buffer = []
        self.source = source

    def one(self):
        self.pos += 1
        if self.pos >= len(self.buffer): self.buffer.extend(self.source.readline().split())
        return self.buffer[self.pos]

    def __call__(self, *types):
        if len(types) == 0: return str(self.one())

        if len(types) == 1:
            tp, count = types[0], 1
            if isinstance(tp, int):
                tp, count = str, tp
            if count == 1:
                return tp(self.one())
            else:
                return tuple(tp(self.one()) for _ in [0] * count)

        if len(types) == 2 and isinstance(types[1], int):
            return tuple(types[0](self.one()) for _ in [0] * types[1])

        return tuple(map(lambda type: type(self.one()), types))

    def line(self, type):
        return tuple(map(type, self.source.readline().split()))


cin = istream()

# setrecursionlimit(10**5)

#endregion

n = int(input())
A = [*map(int, input().split())]

ans = 0

A.sort(key=cmp_to_key(lambda x, y: (10**len(str(y)) * x + y) - (10**len(str(x)) * y + x)))
debug(A)

for a in A:
    ans *= 10**len(str(a))
    ans %= 998244353

    ans += a
    ans %= 998244353

print(ans)
0