結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,884 KB
testcase_01 AC 35 ms
51,824 KB
testcase_02 AC 33 ms
51,752 KB
testcase_03 AC 35 ms
52,068 KB
testcase_04 AC 33 ms
51,692 KB
testcase_05 AC 32 ms
52,472 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 33 ms
52,128 KB
testcase_08 AC 75 ms
96,760 KB
testcase_09 AC 69 ms
91,532 KB
testcase_10 AC 68 ms
89,784 KB
testcase_11 AC 63 ms
85,256 KB
testcase_12 AC 60 ms
83,964 KB
testcase_13 AC 72 ms
96,512 KB
testcase_14 AC 72 ms
93,840 KB
testcase_15 AC 74 ms
96,196 KB
testcase_16 AC 85 ms
105,592 KB
testcase_17 AC 79 ms
101,440 KB
testcase_18 AC 83 ms
105,268 KB
testcase_19 AC 83 ms
105,556 KB
testcase_20 AC 84 ms
107,144 KB
testcase_21 AC 88 ms
107,984 KB
testcase_22 AC 84 ms
105,860 KB
testcase_23 AC 81 ms
105,532 KB
testcase_24 AC 83 ms
105,676 KB
testcase_25 AC 84 ms
105,408 KB
testcase_26 AC 35 ms
52,632 KB
testcase_27 AC 60 ms
84,664 KB
testcase_28 AC 59 ms
82,556 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