結果

問題 No.1709 Indistinguishable by MEX
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-05 10:51:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,992 KB
最終ジャッジ日時 2024-07-07 07:06:30
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 23 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 174 ms
26,040 KB
testcase_09 AC 151 ms
24,020 KB
testcase_10 AC 140 ms
23,548 KB
testcase_11 AC 118 ms
21,104 KB
testcase_12 AC 116 ms
20,952 KB
testcase_13 AC 165 ms
25,812 KB
testcase_14 AC 151 ms
24,392 KB
testcase_15 AC 167 ms
25,208 KB
testcase_16 AC 215 ms
29,732 KB
testcase_17 AC 186 ms
27,220 KB
testcase_18 AC 214 ms
31,988 KB
testcase_19 AC 217 ms
31,988 KB
testcase_20 AC 212 ms
31,788 KB
testcase_21 AC 209 ms
31,992 KB
testcase_22 AC 216 ms
31,860 KB
testcase_23 AC 275 ms
31,988 KB
testcase_24 AC 276 ms
31,956 KB
testcase_25 AC 280 ms
31,992 KB
testcase_26 AC 24 ms
10,752 KB
testcase_27 AC 158 ms
21,716 KB
testcase_28 AC 147 ms
21,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
p = list(map(int, input().split()))
q = [-1] * n
for i in range(n):
	q[p[i]] = i
l, r = n, -1
ans = 1
for i in range(n):
	if l <= q[i] <= r:
		ans *= r - l + 1 - i
		ans %= mod
	else:
		l = min(l, q[i])
		r = max(r, q[i])
print(ans)
0