結果
| 問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
| コンテスト | |
| ユーザー |
prd_xxx
|
| 提出日時 | 2024-04-19 22:43:13 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 137 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 120,320 KB |
| 最終ジャッジ日時 | 2026-04-28 00:39:24 |
| 合計ジャッジ時間 | 7,563 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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