結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー prd_xxxprd_xxx
提出日時 2024-04-19 21:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 112,676 KB
最終ジャッジ日時 2024-10-11 13:57:29
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 162 ms
112,252 KB
testcase_03 AC 123 ms
106,880 KB
testcase_04 AC 126 ms
107,392 KB
testcase_05 AC 129 ms
108,928 KB
testcase_06 AC 166 ms
112,232 KB
testcase_07 AC 149 ms
101,596 KB
testcase_08 AC 160 ms
112,400 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 167 ms
112,676 KB
testcase_13 AC 167 ms
112,540 KB
testcase_14 AC 165 ms
111,896 KB
testcase_15 AC 166 ms
111,900 KB
testcase_16 AC 129 ms
97,536 KB
testcase_17 AC 131 ms
97,920 KB
testcase_18 AC 149 ms
103,896 KB
testcase_19 AC 128 ms
97,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A.sort()

ans = 0
b = 1
while A:
    a = A.pop()
    ans += a*b
    ans %= MOD
    b *= 10
    b %= MOD
print(ans)
0