結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-03-18 14:22:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,578 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,808 KB
最終ジャッジ日時 2024-09-30 04:56:27
合計ジャッジ時間 29,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,136 KB
testcase_01 AC 46 ms
54,400 KB
testcase_02 AC 47 ms
54,912 KB
testcase_03 AC 46 ms
54,656 KB
testcase_04 AC 45 ms
54,400 KB
testcase_05 AC 46 ms
54,400 KB
testcase_06 AC 46 ms
54,400 KB
testcase_07 AC 47 ms
54,528 KB
testcase_08 AC 45 ms
54,656 KB
testcase_09 AC 46 ms
54,528 KB
testcase_10 AC 46 ms
54,528 KB
testcase_11 AC 45 ms
54,656 KB
testcase_12 AC 47 ms
54,656 KB
testcase_13 AC 46 ms
54,272 KB
testcase_14 AC 47 ms
54,528 KB
testcase_15 AC 47 ms
54,656 KB
testcase_16 AC 46 ms
54,656 KB
testcase_17 AC 1,540 ms
114,816 KB
testcase_18 AC 1,519 ms
123,276 KB
testcase_19 AC 47 ms
55,296 KB
testcase_20 AC 48 ms
55,168 KB
testcase_21 AC 48 ms
55,296 KB
testcase_22 AC 1,578 ms
130,520 KB
testcase_23 AC 1,540 ms
130,808 KB
testcase_24 AC 1,554 ms
130,436 KB
testcase_25 AC 1,575 ms
130,760 KB
testcase_26 AC 1,531 ms
130,720 KB
testcase_27 AC 1,531 ms
128,296 KB
testcase_28 AC 1,537 ms
130,488 KB
testcase_29 AC 1,544 ms
129,768 KB
testcase_30 AC 1,551 ms
125,512 KB
testcase_31 AC 1,529 ms
130,616 KB
testcase_32 AC 1,456 ms
129,344 KB
testcase_33 AC 1,099 ms
112,820 KB
testcase_34 AC 1,306 ms
123,084 KB
testcase_35 AC 776 ms
101,248 KB
testcase_36 AC 853 ms
103,924 KB
testcase_37 AC 1,136 ms
113,524 KB
testcase_38 AC 1,136 ms
113,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key

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

N = int(input())
A = list(map(str, input().split()))
A.sort(key=cmp_to_key(comp))

mod = 998244353

pow_10 = [pow(10, i, mod) for i in range(19)]

now = 0
for i in range(N):
    len_a = len(A[i])
    now = (now * pow_10[len_a]) % mod
    now = (now + int(A[i])) % mod
print(now)
0