結果

問題 No.1709 Indistinguishable by MEX
ユーザー tktk_snsntktk_snsn
提出日時 2021-10-16 15:32:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,992 KB
最終ジャッジ日時 2024-09-17 19:27:34
合計ジャッジ時間 6,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 262 ms
27,144 KB
testcase_09 AC 218 ms
24,024 KB
testcase_10 AC 208 ms
23,544 KB
testcase_11 AC 174 ms
21,108 KB
testcase_12 AC 171 ms
21,080 KB
testcase_13 AC 231 ms
25,936 KB
testcase_14 AC 213 ms
24,452 KB
testcase_15 AC 230 ms
25,348 KB
testcase_16 AC 294 ms
29,992 KB
testcase_17 AC 264 ms
27,256 KB
testcase_18 AC 316 ms
29,544 KB
testcase_19 AC 326 ms
29,544 KB
testcase_20 AC 308 ms
29,636 KB
testcase_21 AC 295 ms
29,416 KB
testcase_22 AC 307 ms
29,544 KB
testcase_23 AC 346 ms
29,544 KB
testcase_24 AC 357 ms
29,544 KB
testcase_25 AC 344 ms
29,472 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 196 ms
21,848 KB
testcase_28 AC 190 ms
21,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

ans = 1
cnt = 1
L = R = ptoi[0]
for i in range(1, N):
    p = ptoi[i]
    if p < L or R < p:
        L = min(L, p)
        R = max(R, p)
    else:
        ans *= (R - L + 1) - cnt
        ans %= mod
    cnt += 1


print(ans)
0