結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー titiatitia
提出日時 2024-04-19 21:35:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,596 KB
最終ジャッジ日時 2024-10-11 14:17:51
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 192 ms
35,596 KB
testcase_03 AC 240 ms
29,524 KB
testcase_04 AC 239 ms
30,976 KB
testcase_05 AC 256 ms
30,940 KB
testcase_06 AC 288 ms
33,156 KB
testcase_07 AC 283 ms
32,648 KB
testcase_08 AC 213 ms
34,064 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 280 ms
33,156 KB
testcase_13 AC 277 ms
33,156 KB
testcase_14 AC 278 ms
33,068 KB
testcase_15 AC 289 ms
33,160 KB
testcase_16 AC 196 ms
25,448 KB
testcase_17 AC 196 ms
25,732 KB
testcase_18 AC 241 ms
29,488 KB
testcase_19 AC 198 ms
25,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

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

A.sort()

x=0

for i in range(N):
    x=10*x+A[i]
    x%=mod

print(x%mod)
0