結果

問題 No.2055 12x34...
ユーザー ecotteaecottea
提出日時 2024-02-26 22:48:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 56,336 KB
最終ジャッジ日時 2024-09-29 11:47:16
合計ジャッジ時間 10,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 69 ms
11,972 KB
testcase_03 AC 129 ms
13,124 KB
testcase_04 AC 155 ms
14,024 KB
testcase_05 AC 173 ms
14,896 KB
testcase_06 AC 157 ms
13,996 KB
testcase_07 AC 135 ms
13,208 KB
testcase_08 AC 98 ms
12,368 KB
testcase_09 AC 193 ms
14,816 KB
testcase_10 AC 207 ms
14,928 KB
testcase_11 AC 95 ms
12,648 KB
testcase_12 AC 195 ms
34,324 KB
testcase_13 AC 287 ms
37,964 KB
testcase_14 AC 129 ms
24,352 KB
testcase_15 AC 131 ms
24,520 KB
testcase_16 AC 319 ms
56,336 KB
testcase_17 AC 129 ms
19,868 KB
testcase_18 AC 213 ms
27,324 KB
testcase_19 AC 65 ms
15,252 KB
testcase_20 AC 42 ms
12,412 KB
testcase_21 AC 67 ms
14,556 KB
testcase_22 AC 265 ms
32,540 KB
testcase_23 AC 272 ms
31,520 KB
testcase_24 AC 283 ms
41,884 KB
testcase_25 AC 270 ms
31,448 KB
testcase_26 AC 274 ms
30,440 KB
testcase_27 AC 282 ms
41,824 KB
testcase_28 AC 271 ms
30,560 KB
testcase_29 AC 279 ms
41,780 KB
testcase_30 AC 266 ms
30,556 KB
testcase_31 AC 271 ms
30,428 KB
testcase_32 AC 266 ms
30,428 KB
testcase_33 AC 233 ms
28,904 KB
testcase_34 AC 229 ms
29,016 KB
testcase_35 AC 234 ms
29,148 KB
testcase_36 AC 231 ms
29,020 KB
testcase_37 AC 242 ms
29,276 KB
testcase_38 AC 241 ms
29,140 KB
testcase_39 AC 237 ms
29,016 KB
testcase_40 AC 247 ms
29,148 KB
testcase_41 AC 240 ms
29,144 KB
testcase_42 AC 232 ms
29,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

MOD = 998244353

res = 0

d = defaultdict(int)

for i in range(n):
    c = d[a[i] - 1]
    res += c
    nc = (d[a[i]] + c + 1) % MOD
    d[a[i]] = nc

print(res % MOD)
0