結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー PNJPNJ
提出日時 2024-04-19 22:25:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,685 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-10-11 15:55:16
合計ジャッジ時間 31,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,656 KB
testcase_01 AC 43 ms
55,228 KB
testcase_02 AC 44 ms
54,912 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 43 ms
54,784 KB
testcase_05 AC 48 ms
54,656 KB
testcase_06 AC 48 ms
55,296 KB
testcase_07 AC 47 ms
54,912 KB
testcase_08 AC 43 ms
55,040 KB
testcase_09 AC 44 ms
55,168 KB
testcase_10 AC 43 ms
54,784 KB
testcase_11 AC 42 ms
55,148 KB
testcase_12 AC 43 ms
55,296 KB
testcase_13 AC 43 ms
54,784 KB
testcase_14 AC 43 ms
54,656 KB
testcase_15 AC 43 ms
54,656 KB
testcase_16 AC 43 ms
54,912 KB
testcase_17 AC 1,599 ms
115,072 KB
testcase_18 AC 1,583 ms
123,564 KB
testcase_19 AC 44 ms
55,296 KB
testcase_20 AC 45 ms
55,424 KB
testcase_21 AC 43 ms
56,064 KB
testcase_22 AC 1,654 ms
130,904 KB
testcase_23 AC 1,670 ms
131,072 KB
testcase_24 AC 1,635 ms
130,876 KB
testcase_25 AC 1,671 ms
130,784 KB
testcase_26 AC 1,649 ms
130,900 KB
testcase_27 AC 1,632 ms
128,560 KB
testcase_28 AC 1,685 ms
130,616 KB
testcase_29 AC 1,661 ms
130,052 KB
testcase_30 AC 1,645 ms
126,296 KB
testcase_31 AC 1,663 ms
130,444 KB
testcase_32 AC 1,568 ms
129,448 KB
testcase_33 AC 1,184 ms
113,188 KB
testcase_34 AC 1,375 ms
123,856 KB
testcase_35 AC 801 ms
101,496 KB
testcase_36 AC 897 ms
103,840 KB
testcase_37 AC 1,212 ms
113,988 KB
testcase_38 AC 1,200 ms
113,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
def cmp(a, b):
    if a + b > b + a:
      s = 1
    elif a + b == b + a:
      s = 0
    else:
      s = -1
    return 1 if s > 0 else -1 if s < 0 else 0

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

ans = 0
mod = 998244353
for i in range(N):
  d = len(A[i])
  ans *= pow(10,d,mod)
  ans %= mod
  ans += int(A[i])
  ans %= mod
print(ans)
0