結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー YhuanDebesteYhuanDebeste
提出日時 2024-04-19 22:14:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 113,180 KB
最終ジャッジ日時 2024-10-11 15:36:14
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,272 KB
testcase_01 AC 48 ms
54,784 KB
testcase_02 AC 158 ms
113,180 KB
testcase_03 AC 142 ms
106,624 KB
testcase_04 AC 143 ms
106,880 KB
testcase_05 AC 150 ms
99,516 KB
testcase_06 AC 158 ms
109,196 KB
testcase_07 AC 156 ms
104,036 KB
testcase_08 AC 148 ms
107,796 KB
testcase_09 AC 49 ms
54,400 KB
testcase_10 AC 49 ms
54,272 KB
testcase_11 AC 48 ms
54,400 KB
testcase_12 AC 158 ms
108,940 KB
testcase_13 AC 158 ms
109,064 KB
testcase_14 AC 158 ms
108,436 KB
testcase_15 AC 159 ms
108,804 KB
testcase_16 AC 133 ms
96,328 KB
testcase_17 AC 132 ms
97,272 KB
testcase_18 AC 146 ms
103,560 KB
testcase_19 AC 130 ms
96,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
n = int(input())
arr = list(map(int, input().split()))
arr.sort()
print(reduce(lambda a, b:((10*a) + b) % 998244353, arr) % 998244353)
0