結果
| 問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-19 22:04:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 139 ms / 2,000 ms |
| コード長 | 100 bytes |
| コンパイル時間 | 287 ms |
| コンパイル使用メモリ | 82,312 KB |
| 実行使用メモリ | 122,368 KB |
| 最終ジャッジ日時 | 2024-10-11 15:15:48 |
| 合計ジャッジ時間 | 3,496 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
n,*a=map(int,open(0).read().split()) M=998244353 a.sort() x=0 for i in a: x=x*10+i x%=M print(x)