結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,328 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 38 ms
51,876 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 104 ms
99,968 KB
testcase_05 AC 75 ms
92,000 KB
testcase_06 AC 90 ms
99,840 KB
testcase_07 AC 70 ms
87,276 KB
testcase_08 AC 98 ms
102,400 KB
testcase_09 AC 92 ms
103,480 KB
testcase_10 AC 69 ms
79,744 KB
testcase_11 AC 85 ms
91,648 KB
testcase_12 AC 62 ms
76,032 KB
testcase_13 AC 63 ms
74,752 KB
testcase_14 AC 85 ms
93,952 KB
testcase_15 AC 61 ms
74,240 KB
testcase_16 AC 63 ms
77,888 KB
testcase_17 AC 59 ms
72,832 KB
testcase_18 AC 102 ms
105,088 KB
testcase_19 AC 104 ms
105,216 KB
testcase_20 AC 48 ms
63,232 KB
testcase_21 AC 100 ms
102,528 KB
testcase_22 AC 107 ms
105,072 KB
testcase_23 AC 91 ms
99,320 KB
testcase_24 AC 108 ms
105,344 KB
testcase_25 AC 101 ms
102,272 KB
testcase_26 AC 89 ms
96,384 KB
testcase_27 AC 100 ms
102,528 KB
testcase_28 AC 94 ms
98,944 KB
testcase_29 AC 57 ms
70,016 KB
testcase_30 AC 57 ms
70,144 KB
testcase_31 AC 51 ms
66,048 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