結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー detteiuudetteiuu
提出日時 2024-04-19 21:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 112,316 KB
最終ジャッジ日時 2024-10-11 13:51:13
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 164 ms
112,316 KB
testcase_03 AC 135 ms
106,112 KB
testcase_04 AC 136 ms
106,880 KB
testcase_05 AC 135 ms
108,928 KB
testcase_06 AC 154 ms
108,964 KB
testcase_07 AC 149 ms
101,984 KB
testcase_08 AC 145 ms
108,136 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 155 ms
108,624 KB
testcase_13 AC 154 ms
108,960 KB
testcase_14 AC 152 ms
108,452 KB
testcase_15 AC 153 ms
108,576 KB
testcase_16 AC 124 ms
97,792 KB
testcase_17 AC 127 ms
98,176 KB
testcase_18 AC 145 ms
103,516 KB
testcase_19 AC 126 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 998244353
X = 0
for i in range(N):
    X = 10*X+A[i]
    X %= MOD

print(X)
0