結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー titiatitia
提出日時 2024-04-22 02:58:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 326 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 773,320 KB
最終ジャッジ日時 2024-10-14 01:44:21
合計ジャッジ時間 14,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,416 KB
testcase_01 AC 39 ms
51,752 KB
testcase_02 AC 39 ms
53,520 KB
testcase_03 AC 40 ms
52,032 KB
testcase_04 AC 39 ms
52,424 KB
testcase_05 AC 36 ms
53,588 KB
testcase_06 AC 36 ms
52,016 KB
testcase_07 AC 36 ms
51,948 KB
testcase_08 AC 38 ms
52,204 KB
testcase_09 AC 39 ms
52,636 KB
testcase_10 AC 40 ms
52,544 KB
testcase_11 AC 37 ms
52,348 KB
testcase_12 AC 36 ms
52,640 KB
testcase_13 AC 36 ms
51,952 KB
testcase_14 AC 35 ms
52,160 KB
testcase_15 AC 36 ms
52,832 KB
testcase_16 AC 34 ms
52,236 KB
testcase_17 AC 3,205 ms
429,724 KB
testcase_18 AC 3,264 ms
433,380 KB
testcase_19 AC 38 ms
52,880 KB
testcase_20 AC 36 ms
54,256 KB
testcase_21 AC 37 ms
54,932 KB
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.set_int_max_str_digits(10**9)
mod=998244353

N=int(input())
A=list(map(int,input().split()))

A=list(map(str,A))

B=[]
for s in A:
    X=list(s)
    while len(X)<20:
        X+=list(s)
    B.append((X,list(s)))

B.sort()

X=[]
for _,s in B:
    X+=s

x="".join(X)


print(int(x)%mod)
0