結果
| 問題 |
No.2734 Addition and Multiplication in yukicoder (Hard)
|
| コンテスト | |
| ユーザー |
prd_xxx
|
| 提出日時 | 2024-04-19 22:43:13 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| コンパイル時間 | 174 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 130,432 KB |
| 最終ジャッジ日時 | 2024-10-11 16:30:20 |
| 合計ジャッジ時間 | 11,754 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 WA * 16 RE * 19 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
MOD = 998244353
A.sort(key=lambda x:str(x))
ans = int(''.join(map(str,A))) % MOD
print(ans)
prd_xxx