結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
コンテスト
ユーザー Muhammad Ashar Usmani
提出日時 2025-11-16 22:13:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 119,804 KB
最終ジャッジ日時 2025-11-16 22:13:51
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

a=list(map(int,input().split()))

a.sort()

x=0
for i in range(n):
 x= 10*x+a[i]
print(x%998244353)
0