結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー budoubudou
提出日時 2024-04-20 09:38:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,275 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,552 KB
最終ジャッジ日時 2024-10-12 05:05:07
合計ジャッジ時間 38,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
67,200 KB
testcase_01 AC 72 ms
67,328 KB
testcase_02 AC 72 ms
67,328 KB
testcase_03 AC 72 ms
66,944 KB
testcase_04 AC 71 ms
67,072 KB
testcase_05 AC 72 ms
67,072 KB
testcase_06 AC 71 ms
67,328 KB
testcase_07 AC 71 ms
67,328 KB
testcase_08 AC 70 ms
67,328 KB
testcase_09 AC 71 ms
67,328 KB
testcase_10 AC 71 ms
67,072 KB
testcase_11 AC 71 ms
67,200 KB
testcase_12 AC 72 ms
67,072 KB
testcase_13 AC 73 ms
67,200 KB
testcase_14 AC 72 ms
67,328 KB
testcase_15 AC 72 ms
67,328 KB
testcase_16 AC 72 ms
67,072 KB
testcase_17 AC 1,559 ms
117,816 KB
testcase_18 AC 1,550 ms
118,348 KB
testcase_19 AC 75 ms
69,248 KB
testcase_20 AC 77 ms
68,992 KB
testcase_21 AC 75 ms
68,864 KB
testcase_22 AC 2,179 ms
123,552 KB
testcase_23 AC 2,177 ms
123,416 KB
testcase_24 AC 2,275 ms
123,440 KB
testcase_25 AC 2,166 ms
123,300 KB
testcase_26 AC 2,122 ms
123,288 KB
testcase_27 AC 2,085 ms
122,240 KB
testcase_28 AC 2,162 ms
122,972 KB
testcase_29 AC 2,158 ms
122,656 KB
testcase_30 AC 1,999 ms
122,496 KB
testcase_31 AC 2,184 ms
123,444 KB
testcase_32 AC 2,033 ms
121,728 KB
testcase_33 AC 1,461 ms
114,660 KB
testcase_34 AC 1,732 ms
120,320 KB
testcase_35 AC 948 ms
99,780 KB
testcase_36 AC 1,046 ms
102,144 KB
testcase_37 AC 1,527 ms
114,568 KB
testcase_38 AC 1,422 ms
115,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
from collections import defaultdict, deque
import heapq
from functools import cmp_to_key
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():
  def cmp(x, y):
    a = pow(10, len(y))*int(x) + int(y)
    b = pow(10, len(x))*int(y) + int(x)
    if a > b:
      return 1
    if a < b:
      return -1
    return 0

  N = int(input())
  l = input().split()
  l.sort(key=cmp_to_key(cmp))
  ans = 0
  for x in l:
    ans = pow(10, len(x))*ans + int(x)
    ans %= mod
  print(ans)
def main():
  t = 1
  for _ in range(t):
    solve()
main()
0