結果

問題 No.2433 Min Increasing Sequence
ユーザー lloyzlloyz
提出日時 2023-08-31 00:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 182,944 KB
最終ジャッジ日時 2024-06-10 23:26:51
合計ジャッジ時間 8,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 391 ms
180,628 KB
testcase_05 AC 146 ms
113,504 KB
testcase_06 AC 214 ms
142,876 KB
testcase_07 AC 153 ms
120,628 KB
testcase_08 AC 244 ms
175,104 KB
testcase_09 AC 127 ms
107,136 KB
testcase_10 AC 140 ms
96,768 KB
testcase_11 AC 190 ms
113,880 KB
testcase_12 AC 130 ms
102,528 KB
testcase_13 AC 117 ms
101,320 KB
testcase_14 AC 218 ms
129,004 KB
testcase_15 AC 125 ms
101,760 KB
testcase_16 AC 130 ms
100,308 KB
testcase_17 AC 114 ms
101,072 KB
testcase_18 AC 335 ms
182,472 KB
testcase_19 AC 350 ms
182,944 KB
testcase_20 AC 71 ms
78,464 KB
testcase_21 AC 281 ms
149,284 KB
testcase_22 AC 333 ms
182,868 KB
testcase_23 AC 264 ms
142,636 KB
testcase_24 AC 339 ms
180,924 KB
testcase_25 AC 304 ms
173,588 KB
testcase_26 AC 245 ms
134,668 KB
testcase_27 AC 285 ms
148,860 KB
testcase_28 AC 254 ms
141,100 KB
testcase_29 AC 98 ms
89,088 KB
testcase_30 AC 92 ms
88,960 KB
testcase_31 AC 83 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left
import sys
input = sys.stdin.readline

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

setA = set()
idx_list = defaultdict(list)
for i in range(n):
    setA.add(A[i])
    idx_list[A[i]].append(i)
sortA = sorted(A)
ans = 1
idx = -1
for a in sortA:
    L = idx_list[a]
    i = bisect_left(L, idx)
    if i == len(L):
        continue
    if idx != -1:
        ans *= L[i] - idx + 1
        ans %= mod
    for j in range(i, len(L) - 1):
        ans *= L[j + 1] - L[j] + 1
        ans %= mod
    idx = L[-1]
print(ans)
0