結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-04-19 23:04:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,721 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 127,716 KB
最終ジャッジ日時 2024-10-11 17:14:38
合計ジャッジ時間 31,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,656 KB
testcase_01 AC 45 ms
54,784 KB
testcase_02 AC 44 ms
54,272 KB
testcase_03 AC 45 ms
54,400 KB
testcase_04 AC 44 ms
54,656 KB
testcase_05 AC 44 ms
54,784 KB
testcase_06 AC 43 ms
55,168 KB
testcase_07 AC 44 ms
54,528 KB
testcase_08 AC 45 ms
54,656 KB
testcase_09 AC 45 ms
54,656 KB
testcase_10 AC 44 ms
54,784 KB
testcase_11 AC 44 ms
54,528 KB
testcase_12 AC 44 ms
54,400 KB
testcase_13 AC 44 ms
54,400 KB
testcase_14 AC 44 ms
54,272 KB
testcase_15 AC 44 ms
55,168 KB
testcase_16 AC 44 ms
54,528 KB
testcase_17 AC 1,574 ms
116,832 KB
testcase_18 AC 1,627 ms
117,752 KB
testcase_19 AC 49 ms
61,952 KB
testcase_20 AC 48 ms
61,568 KB
testcase_21 AC 48 ms
61,952 KB
testcase_22 AC 1,721 ms
127,464 KB
testcase_23 AC 1,702 ms
127,716 KB
testcase_24 AC 1,717 ms
127,208 KB
testcase_25 AC 1,677 ms
127,032 KB
testcase_26 AC 1,718 ms
127,492 KB
testcase_27 AC 1,705 ms
125,516 KB
testcase_28 AC 1,698 ms
126,960 KB
testcase_29 AC 1,709 ms
126,268 KB
testcase_30 AC 1,646 ms
118,368 KB
testcase_31 AC 1,680 ms
126,844 KB
testcase_32 AC 1,590 ms
124,260 KB
testcase_33 AC 1,198 ms
108,432 KB
testcase_34 AC 1,441 ms
113,428 KB
testcase_35 AC 802 ms
97,804 KB
testcase_36 AC 897 ms
100,024 KB
testcase_37 AC 1,215 ms
109,960 KB
testcase_38 AC 1,189 ms
108,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

based on
https://yamate11.github.io/blog/posts/2021/11-03-abc225-f-string-cards/

"""

N = list(map(int,input().split()))

A = list(input().split())

from functools import cmp_to_key

from functools import cmp_to_key

def cmp(a, b):
    X = a+b
    Y = b+a
    if X < Y:
        return -1
    elif X==Y:
        return 0
    else:
        return 1

B = list(sorted(A, key=cmp_to_key(cmp)))

ans = "".join(B)
mod = 998244353

x = 0
for c in ans:
    x *= 10
    x += int(c)
    x %= mod

print (x)
0