結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー pitPpitP
提出日時 2024-04-19 23:15:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,822 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,888 KB
最終ジャッジ日時 2024-10-11 17:43:26
合計ジャッジ時間 33,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,912 KB
testcase_01 AC 44 ms
55,040 KB
testcase_02 AC 43 ms
54,784 KB
testcase_03 AC 43 ms
54,656 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 45 ms
55,040 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 49 ms
54,656 KB
testcase_08 AC 45 ms
54,400 KB
testcase_09 AC 46 ms
55,296 KB
testcase_10 AC 45 ms
54,656 KB
testcase_11 AC 45 ms
54,528 KB
testcase_12 AC 45 ms
54,272 KB
testcase_13 AC 44 ms
54,656 KB
testcase_14 AC 43 ms
54,656 KB
testcase_15 AC 45 ms
54,400 KB
testcase_16 AC 45 ms
54,656 KB
testcase_17 AC 1,636 ms
119,968 KB
testcase_18 AC 1,643 ms
128,840 KB
testcase_19 AC 46 ms
55,552 KB
testcase_20 AC 46 ms
55,296 KB
testcase_21 AC 47 ms
55,424 KB
testcase_22 AC 1,820 ms
137,736 KB
testcase_23 AC 1,805 ms
137,664 KB
testcase_24 AC 1,822 ms
137,608 KB
testcase_25 AC 1,784 ms
137,544 KB
testcase_26 AC 1,816 ms
137,888 KB
testcase_27 AC 1,780 ms
135,512 KB
testcase_28 AC 1,794 ms
137,784 KB
testcase_29 AC 1,795 ms
137,092 KB
testcase_30 AC 1,752 ms
134,512 KB
testcase_31 AC 1,795 ms
137,800 KB
testcase_32 AC 1,693 ms
134,064 KB
testcase_33 AC 1,265 ms
118,852 KB
testcase_34 AC 1,491 ms
127,172 KB
testcase_35 AC 846 ms
99,424 KB
testcase_36 AC 948 ms
102,312 KB
testcase_37 AC 1,309 ms
118,360 KB
testcase_38 AC 1,281 ms
118,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
MOD = 998244353
N = int(input())
A = list(map(int, input().split()))
B = []


B = [(str(A[i]), i) for i in range(N)]
def cmp(x, y):
    S = x[0]; T = y[0]
    return -1 if S + T < T + S else 0

B.sort(key=cmp_to_key(cmp))

x = 0
for i in range(N):
    idx = B[i][-1]
    x = pow(10, len(str(A[idx]))) * x + A[idx]
    x %= MOD

print(x)
0