結果

問題 No.2433 Min Increasing Sequence
ユーザー sotanishysotanishy
提出日時 2023-08-18 22:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-11-28 07:57:37
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 36 ms
51,328 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 97 ms
99,712 KB
testcase_05 AC 64 ms
81,408 KB
testcase_06 AC 79 ms
96,640 KB
testcase_07 AC 67 ms
83,840 KB
testcase_08 AC 87 ms
100,864 KB
testcase_09 AC 79 ms
91,776 KB
testcase_10 AC 58 ms
73,856 KB
testcase_11 AC 68 ms
84,224 KB
testcase_12 AC 53 ms
72,576 KB
testcase_13 AC 51 ms
69,376 KB
testcase_14 AC 69 ms
87,808 KB
testcase_15 AC 51 ms
70,016 KB
testcase_16 AC 55 ms
73,984 KB
testcase_17 AC 50 ms
68,992 KB
testcase_18 AC 87 ms
104,064 KB
testcase_19 AC 87 ms
105,728 KB
testcase_20 AC 49 ms
60,544 KB
testcase_21 AC 82 ms
98,944 KB
testcase_22 AC 93 ms
103,936 KB
testcase_23 AC 85 ms
95,488 KB
testcase_24 AC 101 ms
105,600 KB
testcase_25 AC 88 ms
99,584 KB
testcase_26 AC 72 ms
91,264 KB
testcase_27 AC 79 ms
98,688 KB
testcase_28 AC 77 ms
94,720 KB
testcase_29 AC 49 ms
64,896 KB
testcase_30 AC 47 ms
65,024 KB
testcase_31 AC 46 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353
N = int(input())
A = list(map(int, input().split()))
x = A[-1]
j = N-1
ans = 1
for i in range(N-1)[::-1]:
    if A[i] <= x:
        ans = ans * (j - i + 1) % mod
        x = A[i]
        j = i
print(ans)
0