結果

問題 No.1709 Indistinguishable by MEX
ユーザー MineMine
提出日時 2022-01-07 20:52:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-04-26 18:21:05
合計ジャッジ時間 10,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 434 ms
28,840 KB
testcase_09 AC 357 ms
27,788 KB
testcase_10 AC 339 ms
27,452 KB
testcase_11 AC 279 ms
26,240 KB
testcase_12 AC 270 ms
26,044 KB
testcase_13 AC 377 ms
28,608 KB
testcase_14 AC 351 ms
27,624 KB
testcase_15 AC 364 ms
28,592 KB
testcase_16 AC 478 ms
40,188 KB
testcase_17 AC 447 ms
40,520 KB
testcase_18 AC 530 ms
41,684 KB
testcase_19 AC 533 ms
41,552 KB
testcase_20 AC 526 ms
41,636 KB
testcase_21 AC 517 ms
41,556 KB
testcase_22 AC 508 ms
41,588 KB
testcase_23 AC 390 ms
41,504 KB
testcase_24 AC 381 ms
41,668 KB
testcase_25 AC 388 ms
41,556 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 220 ms
26,644 KB
testcase_28 AC 204 ms
26,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
mod = 998244353
place = {}
for i in range(n):
    place[a[i]] = i

ans = 1
l = place[0]
r = place[0]
for i in range(1, n):
    l_nxt = min(l, place[i])
    r_nxt = max(r, place[i])
    if l == l_nxt and r == r_nxt:
        ans *= r - l + 1 - i
        ans %= mod 
    l = l_nxt
    r = r_nxt

print(ans)
0