結果
| 問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
| コンテスト | |
| ユーザー |
👑 SPD_9X2
|
| 提出日時 | 2024-04-19 21:33:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 158 ms / 2,000 ms |
| コード長 | 131 bytes |
| コンパイル時間 | 442 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 111,940 KB |
| 最終ジャッジ日時 | 2024-10-11 14:11:29 |
| 合計ジャッジ時間 | 3,980 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
N = int(input())
x = 0
A = list(map(int,input().split()))
A.sort()
for a in A:
x = x * 10 + a
x %= 998244353
print (x)
SPD_9X2