結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー ryohei22ryohei22
提出日時 2024-05-03 20:29:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 112,260 KB
最終ジャッジ日時 2024-11-25 00:31:07
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,052 KB
testcase_01 AC 33 ms
53,652 KB
testcase_02 AC 127 ms
112,260 KB
testcase_03 AC 109 ms
105,136 KB
testcase_04 AC 106 ms
106,944 KB
testcase_05 AC 109 ms
107,452 KB
testcase_06 AC 123 ms
106,980 KB
testcase_07 AC 121 ms
100,420 KB
testcase_08 AC 114 ms
106,416 KB
testcase_09 AC 34 ms
52,180 KB
testcase_10 AC 33 ms
52,064 KB
testcase_11 AC 32 ms
53,172 KB
testcase_12 AC 123 ms
106,984 KB
testcase_13 AC 123 ms
107,372 KB
testcase_14 AC 122 ms
106,716 KB
testcase_15 AC 126 ms
106,852 KB
testcase_16 AC 100 ms
97,752 KB
testcase_17 AC 101 ms
98,176 KB
testcase_18 AC 114 ms
101,924 KB
testcase_19 AC 102 ms
97,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0