結果

問題 No.2433 Min Increasing Sequence
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 21:09:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 105,640 KB
最終ジャッジ日時 2024-05-06 02:45:27
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 35 ms
52,204 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 101 ms
99,968 KB
testcase_05 AC 70 ms
92,664 KB
testcase_06 AC 84 ms
99,924 KB
testcase_07 AC 66 ms
87,808 KB
testcase_08 AC 92 ms
102,784 KB
testcase_09 AC 87 ms
103,680 KB
testcase_10 AC 65 ms
80,384 KB
testcase_11 AC 79 ms
92,032 KB
testcase_12 AC 58 ms
76,800 KB
testcase_13 AC 60 ms
74,880 KB
testcase_14 AC 80 ms
94,104 KB
testcase_15 AC 59 ms
74,880 KB
testcase_16 AC 60 ms
77,952 KB
testcase_17 AC 56 ms
73,088 KB
testcase_18 AC 95 ms
105,476 KB
testcase_19 AC 98 ms
105,448 KB
testcase_20 AC 46 ms
63,232 KB
testcase_21 AC 92 ms
102,656 KB
testcase_22 AC 98 ms
105,228 KB
testcase_23 AC 88 ms
99,808 KB
testcase_24 AC 101 ms
105,640 KB
testcase_25 AC 90 ms
102,784 KB
testcase_26 AC 80 ms
96,332 KB
testcase_27 AC 91 ms
102,592 KB
testcase_28 AC 86 ms
99,328 KB
testcase_29 AC 55 ms
70,656 KB
testcase_30 AC 55 ms
70,400 KB
testcase_31 AC 49 ms
66,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ある数が代表になるためには

・それより右に小さい数が無い

が必須

"""

import sys
from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

stk = []

for i in range(N):

    tup = (A[i],i)

    while stk and stk[-1][0] > A[i]:
        stk.pop()

    stk.append(tup)

mod = 998244353
ans = 1

#print (stk)
for i in range(len(stk)-1):

    _,l = stk[i]
    _,r = stk[i+1]

    ans *= r-l+1
    ans %= mod

print (ans % mod)
        
0