結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー budoubudou
提出日時 2024-04-20 07:34:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 122,964 KB
最終ジャッジ日時 2024-10-12 02:45:06
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,436 KB
testcase_01 AC 59 ms
68,612 KB
testcase_02 AC 157 ms
117,260 KB
testcase_03 AC 141 ms
106,092 KB
testcase_04 AC 144 ms
106,544 KB
testcase_05 AC 145 ms
107,848 KB
testcase_06 AC 155 ms
117,536 KB
testcase_07 AC 149 ms
108,776 KB
testcase_08 AC 152 ms
122,964 KB
testcase_09 AC 59 ms
67,588 KB
testcase_10 AC 58 ms
67,268 KB
testcase_11 AC 59 ms
67,520 KB
testcase_12 AC 156 ms
117,868 KB
testcase_13 AC 154 ms
118,248 KB
testcase_14 AC 157 ms
117,360 KB
testcase_15 AC 157 ms
117,220 KB
testcase_16 AC 126 ms
104,772 KB
testcase_17 AC 128 ms
105,024 KB
testcase_18 AC 144 ms
112,400 KB
testcase_19 AC 130 ms
104,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
from collections import defaultdict
input = lambda: sys.stdin.readline().strip()
inf = 10**18
mod = 998244353
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# sys.setrecursionlimit(10**6)

def solve():
  N = int(input())
  A = list(map(int, input().split()))
  A.sort()
  ans = 0
  for x in A:
    ans = ans*10 + x
    ans %= mod
  print(ans)
def main():
  t = 1
  for _ in range(t):
    solve()
main()
0