結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー イルカ
提出日時 2024-06-11 12:37:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 109 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 267,684 KB
最終ジャッジ日時 2024-06-11 12:37:17
合計ジャッジ時間 5,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*V=map(int,open(0).read().split());cnt=0
for i in range(N):cnt=((cnt*10)+sorted(V)[i])%998244353
print(cnt)
0