結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー anonymouslyanonymously
提出日時 2024-04-19 21:42:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,452 KB
最終ジャッジ日時 2024-10-11 14:30:57
合計ジャッジ時間 5,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 210 ms
35,452 KB
testcase_03 AC 256 ms
29,396 KB
testcase_04 AC 253 ms
30,604 KB
testcase_05 AC 257 ms
30,980 KB
testcase_06 AC 305 ms
34,444 KB
testcase_07 AC 303 ms
32,272 KB
testcase_08 AC 218 ms
33,944 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 304 ms
34,700 KB
testcase_13 AC 303 ms
34,576 KB
testcase_14 AC 304 ms
34,708 KB
testcase_15 AC 301 ms
34,700 KB
testcase_16 AC 214 ms
25,328 KB
testcase_17 AC 219 ms
25,616 KB
testcase_18 AC 268 ms
29,364 KB
testcase_19 AC 212 ms
25,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 998244353
n = int(input())
A = [int(_) for _ in input().split()]
A.sort()
S = 0
for i in range(n):
    S = (10 * S + A[i]) % M

print(S)
0