結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー nikoro256nikoro256
提出日時 2024-04-19 21:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 112,608 KB
最終ジャッジ日時 2024-10-11 14:10:53
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 158 ms
112,180 KB
testcase_03 AC 121 ms
104,576 KB
testcase_04 AC 123 ms
105,472 KB
testcase_05 AC 126 ms
107,520 KB
testcase_06 AC 167 ms
112,156 KB
testcase_07 AC 148 ms
100,580 KB
testcase_08 AC 159 ms
111,840 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 AC 38 ms
52,260 KB
testcase_12 AC 167 ms
112,280 KB
testcase_13 AC 167 ms
112,608 KB
testcase_14 AC 167 ms
112,024 KB
testcase_15 AC 165 ms
112,204 KB
testcase_16 AC 129 ms
97,664 KB
testcase_17 AC 132 ms
98,248 KB
testcase_18 AC 155 ms
103,888 KB
testcase_19 AC 130 ms
97,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
p=998244353
A.sort(reverse=True)
left=1
ans=0
for a in A:
    ans+=a*left
    ans%=p
    left*=10
    left%=p
print(ans%p)
0