結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー loop0919loop0919
提出日時 2024-04-19 21:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 112,428 KB
最終ジャッジ日時 2024-10-11 13:52:44
合計ジャッジ時間 5,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
51,808 KB
testcase_02 AC 234 ms
112,428 KB
testcase_03 AC 222 ms
107,264 KB
testcase_04 AC 228 ms
107,776 KB
testcase_05 AC 232 ms
108,160 KB
testcase_06 AC 257 ms
112,160 KB
testcase_07 AC 247 ms
100,576 KB
testcase_08 AC 247 ms
111,844 KB
testcase_09 AC 40 ms
51,328 KB
testcase_10 AC 40 ms
51,584 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 259 ms
111,904 KB
testcase_13 AC 261 ms
112,364 KB
testcase_14 AC 257 ms
111,764 KB
testcase_15 AC 257 ms
111,396 KB
testcase_16 AC 191 ms
97,920 KB
testcase_17 AC 194 ms
97,792 KB
testcase_18 AC 228 ms
103,768 KB
testcase_19 AC 190 ms
97,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N = int(input())
A = sorted(map(int, input().split()))

print(sum(pow(10, N-i-1, MOD) * a for i, a in enumerate(A)) % MOD)
0