結果

問題 No.2433 Min Increasing Sequence
ユーザー lloyzlloyz
提出日時 2023-08-31 00:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 183,912 KB
最終ジャッジ日時 2025-01-03 00:32:31
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 375 ms
180,948 KB
testcase_05 AC 155 ms
113,308 KB
testcase_06 AC 245 ms
143,488 KB
testcase_07 AC 166 ms
120,960 KB
testcase_08 AC 270 ms
175,376 KB
testcase_09 AC 132 ms
107,264 KB
testcase_10 AC 139 ms
98,304 KB
testcase_11 AC 207 ms
113,804 KB
testcase_12 AC 144 ms
102,784 KB
testcase_13 AC 130 ms
101,248 KB
testcase_14 AC 250 ms
129,120 KB
testcase_15 AC 132 ms
101,632 KB
testcase_16 AC 146 ms
100,352 KB
testcase_17 AC 119 ms
100,992 KB
testcase_18 AC 360 ms
183,912 KB
testcase_19 AC 358 ms
183,704 KB
testcase_20 AC 83 ms
78,592 KB
testcase_21 AC 312 ms
149,376 KB
testcase_22 AC 358 ms
183,168 KB
testcase_23 AC 291 ms
143,032 KB
testcase_24 AC 365 ms
182,840 KB
testcase_25 AC 325 ms
173,816 KB
testcase_26 AC 249 ms
134,680 KB
testcase_27 AC 300 ms
149,004 KB
testcase_28 AC 273 ms
141,496 KB
testcase_29 AC 111 ms
89,344 KB
testcase_30 AC 97 ms
89,088 KB
testcase_31 AC 96 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