結果
| 問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2024-04-19 21:24:25 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 164 ms / 2,000 ms |
| コード長 | 143 bytes |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 81,996 KB |
| 実行使用メモリ | 112,316 KB |
| 最終ジャッジ日時 | 2024-10-11 13:51:13 |
| 合計ジャッジ時間 | 3,818 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
N = int(input())
A = sorted(list(map(int, input().split())))
MOD = 998244353
X = 0
for i in range(N):
X = 10*X+A[i]
X %= MOD
print(X)
detteiuu