結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー hiro1729hiro1729
提出日時 2024-03-12 07:12:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 112,060 KB
最終ジャッジ日時 2024-09-29 22:10:19
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 136 ms
112,060 KB
testcase_03 AC 119 ms
106,240 KB
testcase_04 AC 122 ms
106,496 KB
testcase_05 AC 122 ms
108,928 KB
testcase_06 AC 139 ms
108,460 KB
testcase_07 AC 135 ms
101,944 KB
testcase_08 AC 135 ms
108,188 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 37 ms
51,456 KB
testcase_12 AC 139 ms
108,708 KB
testcase_13 AC 140 ms
108,832 KB
testcase_14 AC 140 ms
108,324 KB
testcase_15 AC 139 ms
108,532 KB
testcase_16 AC 111 ms
97,792 KB
testcase_17 AC 113 ms
97,920 KB
testcase_18 AC 129 ms
103,252 KB
testcase_19 AC 114 ms
97,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = int(input())
A = list(map(int, input().split()))
x = 0
for i in sorted(A):
	x = 10 * x + i
	x %= mod
print(x)
0