結果
| 問題 | No.2729 Addition and Multiplication in yukicoder (Easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-16 22:13:45 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 275 ms |
| コンパイル使用メモリ | 95,984 KB |
| 実行使用メモリ | 125,752 KB |
| 最終ジャッジ日時 | 2026-07-16 16:34:15 |
| 合計ジャッジ時間 | 4,450 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | TLE * 1 -- * 17 |
ソースコード
n=int(input()) a=list(map(int,input().split())) a.sort() x=0 for i in range(n): x= 10*x+a[i] print(x%998244353)