結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-03-12 01:43:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 112,308 KB
最終ジャッジ日時 2024-09-29 22:07:46
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 128 ms
112,308 KB
testcase_03 AC 113 ms
104,320 KB
testcase_04 AC 116 ms
105,296 KB
testcase_05 AC 120 ms
107,392 KB
testcase_06 AC 136 ms
106,992 KB
testcase_07 AC 129 ms
100,636 KB
testcase_08 AC 122 ms
106,852 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 34 ms
52,176 KB
testcase_12 AC 130 ms
107,040 KB
testcase_13 AC 131 ms
107,296 KB
testcase_14 AC 131 ms
106,712 KB
testcase_15 AC 133 ms
106,976 KB
testcase_16 AC 110 ms
98,048 KB
testcase_17 AC 110 ms
98,200 KB
testcase_18 AC 124 ms
101,728 KB
testcase_19 AC 109 ms
97,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

n = int(input())
a = list(map(int, input().split()))

a.sort()
x = 0
for i in range(n):
    x = (x * 10 + a[i]) % mod
print(x)
0