結果

問題 No.1709 Indistinguishable by MEX
ユーザー irumo8202irumo8202
提出日時 2022-01-29 17:21:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 108,120 KB
最終ジャッジ日時 2024-06-10 16:56:12
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,616 KB
testcase_01 AC 33 ms
53,476 KB
testcase_02 AC 32 ms
54,024 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 35 ms
52,212 KB
testcase_05 AC 33 ms
52,956 KB
testcase_06 AC 34 ms
52,824 KB
testcase_07 AC 34 ms
53,136 KB
testcase_08 AC 75 ms
97,072 KB
testcase_09 AC 67 ms
92,432 KB
testcase_10 AC 65 ms
88,404 KB
testcase_11 AC 60 ms
84,968 KB
testcase_12 AC 58 ms
83,240 KB
testcase_13 AC 72 ms
97,280 KB
testcase_14 AC 71 ms
93,424 KB
testcase_15 AC 73 ms
97,264 KB
testcase_16 AC 82 ms
105,576 KB
testcase_17 AC 78 ms
101,436 KB
testcase_18 AC 86 ms
105,672 KB
testcase_19 AC 84 ms
106,036 KB
testcase_20 AC 82 ms
106,204 KB
testcase_21 AC 88 ms
108,120 KB
testcase_22 AC 83 ms
106,204 KB
testcase_23 AC 83 ms
105,476 KB
testcase_24 AC 84 ms
105,792 KB
testcase_25 AC 87 ms
105,556 KB
testcase_26 AC 35 ms
52,276 KB
testcase_27 AC 61 ms
84,920 KB
testcase_28 AC 61 ms
81,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
MOD = 998244353

ind = [0] * N
for i in range(N):
    ind[P[i]] = i

ans = 1
l = r = ind[0]

for k in range(1, N):
    i = ind[k]
    nl, nr = min(l, i), max(r, i)
    if (l, r) == (nl, nr):
        ans *= r - l + 1 - k
        ans %= MOD
    l, r = nl, nr

print(ans)
0