結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー cologne
提出日時 2025-05-23 16:14:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 112,400 KB
最終ジャッジ日時 2025-05-23 16:15:06
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = input().split()
a.sort(key=lambda x: int(x))

ans = 0
for i in a:
    ans = ans * 10 + int(i)
    ans %= 998244353

print(ans)
0