結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー kusirakusirakusirakusira
提出日時 2024-03-14 13:05:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 112,436 KB
最終ジャッジ日時 2024-09-29 23:41:40
合計ジャッジ時間 3,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 125 ms
112,436 KB
testcase_03 AC 112 ms
104,192 KB
testcase_04 AC 112 ms
105,216 KB
testcase_05 AC 110 ms
107,136 KB
testcase_06 AC 123 ms
107,036 KB
testcase_07 AC 119 ms
100,352 KB
testcase_08 AC 112 ms
106,208 KB
testcase_09 AC 33 ms
51,456 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 33 ms
52,096 KB
testcase_12 AC 123 ms
107,348 KB
testcase_13 AC 123 ms
107,684 KB
testcase_14 AC 121 ms
107,040 KB
testcase_15 AC 124 ms
106,784 KB
testcase_16 AC 99 ms
97,920 KB
testcase_17 AC 100 ms
98,176 KB
testcase_18 AC 120 ms
101,976 KB
testcase_19 AC 100 ms
97,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(x)
0