結果

問題 No.1709 Indistinguishable by MEX
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-24 19:27:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-12-14 19:19:51
合計ジャッジ時間 4,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 38 ms
53,352 KB
testcase_02 AC 39 ms
53,220 KB
testcase_03 AC 37 ms
53,144 KB
testcase_04 AC 37 ms
53,216 KB
testcase_05 AC 37 ms
53,568 KB
testcase_06 AC 38 ms
52,492 KB
testcase_07 AC 38 ms
53,324 KB
testcase_08 AC 82 ms
96,636 KB
testcase_09 AC 72 ms
91,544 KB
testcase_10 AC 73 ms
89,740 KB
testcase_11 AC 70 ms
86,060 KB
testcase_12 AC 67 ms
83,276 KB
testcase_13 AC 81 ms
98,208 KB
testcase_14 AC 79 ms
93,488 KB
testcase_15 AC 81 ms
96,620 KB
testcase_16 AC 90 ms
105,932 KB
testcase_17 AC 88 ms
101,776 KB
testcase_18 AC 91 ms
105,392 KB
testcase_19 AC 92 ms
106,904 KB
testcase_20 AC 91 ms
105,244 KB
testcase_21 AC 93 ms
108,032 KB
testcase_22 AC 92 ms
106,444 KB
testcase_23 AC 90 ms
105,948 KB
testcase_24 AC 92 ms
106,288 KB
testcase_25 AC 86 ms
105,620 KB
testcase_26 AC 36 ms
53,280 KB
testcase_27 AC 67 ms
84,848 KB
testcase_28 AC 66 ms
82,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = list(map(int, input().split()))
mod = 998244353

ptoi = [0]*n
for i, p in enumerate(P):
    ptoi[p] = i

ans = 1
l = ptoi[0]
r = ptoi[0]
for p in range(1, n):
    i = ptoi[p]
    nl, nr = min(l, i), max(r, i)
    if (l, r) == (nl, nr):
        ans *= (r-l+1-p)
        ans %= mod
    l, r = nl, nr
print(ans)
0