結果

問題 No.1709 Indistinguishable by MEX
ユーザー horitaka1999horitaka1999
提出日時 2021-11-07 00:34:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 124,672 KB
最終ジャッジ日時 2024-11-08 00:11:24
合計ジャッジ時間 5,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 48 ms
53,376 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 44 ms
53,376 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 130 ms
119,808 KB
testcase_09 AC 113 ms
115,328 KB
testcase_10 AC 107 ms
109,952 KB
testcase_11 AC 97 ms
103,936 KB
testcase_12 AC 93 ms
99,968 KB
testcase_13 AC 125 ms
124,416 KB
testcase_14 AC 120 ms
119,424 KB
testcase_15 AC 125 ms
124,672 KB
testcase_16 AC 138 ms
110,080 KB
testcase_17 AC 131 ms
116,608 KB
testcase_18 AC 144 ms
109,696 KB
testcase_19 AC 142 ms
109,804 KB
testcase_20 AC 148 ms
109,812 KB
testcase_21 AC 140 ms
109,552 KB
testcase_22 AC 140 ms
109,808 KB
testcase_23 AC 132 ms
109,680 KB
testcase_24 AC 134 ms
109,560 KB
testcase_25 AC 131 ms
109,556 KB
testcase_26 AC 43 ms
53,504 KB
testcase_27 AC 94 ms
103,936 KB
testcase_28 AC 93 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())                    
P = list(map(int,input().split()))
dic = defaultdict(int)
for i in range(N):
    dic[P[i]] = i
l = 0
r = 0
ans = 1
mod = 998244353
for x in range(N):
    if x == 0:
        l = dic[x]
        r = dic[x]
    else:
        index = dic[x]
        if l < index < r:
            ans *= (r-l+1-x)
            ans %= mod
        else:
            l = min(index,l)
            r = max(index,r)
print(ans)

0