結果
| 問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-24 13:42:35 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 144 ms / 2,000 ms |
| コード長 | 124 bytes |
| コンパイル時間 | 160 ms |
| コンパイル使用メモリ | 82,244 KB |
| 実行使用メモリ | 111,980 KB |
| 最終ジャッジ日時 | 2024-11-06 21:57:07 |
| 合計ジャッジ時間 | 4,409 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
N=int(input()) A=list(map(int, input().split())) A.sort() x=0 for i in range(len(A)): x = (10*x + A[i])%998244353 print(x)