結果

問題 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  
実行時間 532 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-11-14 08:16:20
合計ジャッジ時間 10,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 429 ms
28,812 KB
testcase_09 AC 354 ms
28,000 KB
testcase_10 AC 336 ms
27,464 KB
testcase_11 AC 287 ms
26,272 KB
testcase_12 AC 277 ms
26,228 KB
testcase_13 AC 370 ms
28,516 KB
testcase_14 AC 352 ms
27,780 KB
testcase_15 AC 359 ms
28,592 KB
testcase_16 AC 470 ms
40,160 KB
testcase_17 AC 433 ms
40,472 KB
testcase_18 AC 532 ms
41,616 KB
testcase_19 AC 528 ms
41,720 KB
testcase_20 AC 521 ms
41,740 KB
testcase_21 AC 493 ms
41,676 KB
testcase_22 AC 498 ms
41,628 KB
testcase_23 AC 368 ms
41,680 KB
testcase_24 AC 372 ms
41,748 KB
testcase_25 AC 367 ms
41,616 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 216 ms
26,548 KB
testcase_28 AC 200 ms
26,228 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