結果

問題 No.1709 Indistinguishable by MEX
ユーザー tassei903tassei903
提出日時 2021-10-15 22:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 107,960 KB
最終ジャッジ日時 2024-09-17 17:31:36
合計ジャッジ時間 3,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,744 KB
testcase_01 AC 36 ms
51,812 KB
testcase_02 AC 38 ms
51,748 KB
testcase_03 AC 36 ms
52,756 KB
testcase_04 AC 34 ms
52,628 KB
testcase_05 AC 33 ms
51,872 KB
testcase_06 AC 34 ms
51,752 KB
testcase_07 AC 34 ms
52,148 KB
testcase_08 AC 78 ms
97,764 KB
testcase_09 AC 67 ms
93,228 KB
testcase_10 AC 66 ms
89,536 KB
testcase_11 AC 63 ms
85,784 KB
testcase_12 AC 60 ms
82,436 KB
testcase_13 AC 77 ms
97,748 KB
testcase_14 AC 74 ms
93,848 KB
testcase_15 AC 72 ms
98,256 KB
testcase_16 AC 81 ms
106,064 KB
testcase_17 AC 78 ms
101,672 KB
testcase_18 AC 82 ms
105,260 KB
testcase_19 AC 81 ms
105,592 KB
testcase_20 AC 86 ms
105,560 KB
testcase_21 AC 89 ms
107,960 KB
testcase_22 AC 89 ms
107,816 KB
testcase_23 AC 84 ms
106,332 KB
testcase_24 AC 83 ms
106,584 KB
testcase_25 AC 82 ms
106,160 KB
testcase_26 AC 33 ms
52,484 KB
testcase_27 AC 63 ms
84,836 KB
testcase_28 AC 58 ms
82,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
l = n
r = -1
ans = 1
p = na()
q = [-1]*n
mod = 998244353
for i in range(n):
    q[p[i]] = i

for i in range(n):
    ans *= max([1,r-l-i][l<=q[i]<r],1)
    ans %= mod
    r = max(q[i]+1,r)
    l = min(q[i], l)
print(ans)
0