結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 66 ms
11,588 KB
testcase_03 AC 110 ms
13,000 KB
testcase_04 AC 135 ms
13,896 KB
testcase_05 AC 149 ms
14,636 KB
testcase_06 AC 131 ms
13,736 KB
testcase_07 AC 113 ms
12,952 KB
testcase_08 AC 88 ms
12,104 KB
testcase_09 AC 157 ms
14,308 KB
testcase_10 AC 175 ms
14,680 KB
testcase_11 AC 86 ms
12,144 KB
testcase_12 AC 261 ms
33,992 KB
testcase_13 AC 398 ms
37,668 KB
testcase_14 AC 182 ms
24,288 KB
testcase_15 AC 181 ms
24,076 KB
testcase_16 AC 434 ms
56,240 KB
testcase_17 AC 122 ms
19,612 KB
testcase_18 AC 205 ms
27,200 KB
testcase_19 AC 71 ms
15,252 KB
testcase_20 AC 47 ms
12,156 KB
testcase_21 AC 70 ms
15,068 KB
testcase_22 AC 263 ms
32,284 KB
testcase_23 AC 288 ms
31,416 KB
testcase_24 AC 329 ms
41,524 KB
testcase_25 AC 295 ms
31,060 KB
testcase_26 AC 295 ms
30,308 KB
testcase_27 AC 323 ms
41,596 KB
testcase_28 AC 294 ms
30,340 KB
testcase_29 AC 316 ms
41,404 KB
testcase_30 AC 300 ms
30,300 KB
testcase_31 AC 291 ms
30,192 KB
testcase_32 AC 300 ms
30,348 KB
testcase_33 AC 215 ms
28,640 KB
testcase_34 AC 218 ms
28,760 KB
testcase_35 AC 213 ms
28,760 KB
testcase_36 AC 214 ms
28,888 KB
testcase_37 AC 221 ms
28,888 KB
testcase_38 AC 218 ms
28,892 KB
testcase_39 AC 215 ms
28,760 KB
testcase_40 AC 211 ms
28,892 KB
testcase_41 AC 215 ms
28,892 KB
testcase_42 AC 214 ms
28,768 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