結果
問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
ユーザー |
![]() |
提出日時 | 2024-04-19 21:32:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 167 ms / 2,000 ms |
コード長 | 170 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 81,972 KB |
実行使用メモリ | 112,608 KB |
最終ジャッジ日時 | 2024-10-11 14:10:53 |
合計ジャッジ時間 | 3,945 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
N=int(input()) A=list(map(int,input().split())) p=998244353 A.sort(reverse=True) left=1 ans=0 for a in A: ans+=a*left ans%=p left*=10 left%=p print(ans%p)