結果

問題 No.2055 12x34...
ユーザー lloyzlloyz
提出日時 2022-09-18 01:32:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,356 KB
最終ジャッジ日時 2024-06-01 15:22:19
合計ジャッジ時間 10,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 64 ms
11,844 KB
testcase_03 AC 106 ms
13,124 KB
testcase_04 AC 135 ms
14,152 KB
testcase_05 AC 147 ms
14,768 KB
testcase_06 AC 136 ms
14,120 KB
testcase_07 AC 112 ms
13,344 KB
testcase_08 AC 87 ms
12,240 KB
testcase_09 AC 160 ms
14,688 KB
testcase_10 AC 165 ms
14,676 KB
testcase_11 AC 84 ms
12,652 KB
testcase_12 AC 244 ms
34,288 KB
testcase_13 AC 390 ms
37,772 KB
testcase_14 AC 172 ms
24,484 KB
testcase_15 AC 175 ms
24,464 KB
testcase_16 AC 401 ms
56,356 KB
testcase_17 AC 124 ms
19,864 KB
testcase_18 AC 209 ms
27,456 KB
testcase_19 AC 69 ms
15,248 KB
testcase_20 AC 45 ms
12,284 KB
testcase_21 AC 69 ms
14,552 KB
testcase_22 AC 256 ms
32,540 KB
testcase_23 AC 275 ms
31,528 KB
testcase_24 AC 311 ms
41,948 KB
testcase_25 AC 283 ms
31,512 KB
testcase_26 AC 291 ms
30,436 KB
testcase_27 AC 312 ms
41,832 KB
testcase_28 AC 293 ms
30,560 KB
testcase_29 AC 303 ms
42,004 KB
testcase_30 AC 290 ms
30,428 KB
testcase_31 AC 291 ms
30,560 KB
testcase_32 AC 298 ms
30,432 KB
testcase_33 AC 218 ms
29,024 KB
testcase_34 AC 217 ms
29,024 KB
testcase_35 AC 214 ms
29,140 KB
testcase_36 AC 218 ms
29,128 KB
testcase_37 AC 217 ms
29,148 KB
testcase_38 AC 219 ms
29,016 KB
testcase_39 AC 219 ms
29,012 KB
testcase_40 AC 212 ms
29,016 KB
testcase_41 AC 211 ms
29,144 KB
testcase_42 AC 212 ms
29,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ans = 0
DP = defaultdict(int)
for a in A:
    DP[a] += DP[a - 1] + 1
    DP[a] %= mod
for cnt in DP.values():
    ans += cnt
    ans %= mod
ans -= n
ans %= mod
print(ans)
0