結果

問題 No.1709 Indistinguishable by MEX
ユーザー chineristACchineristAC
提出日時 2021-05-25 22:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-09-17 16:55:45
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,716 KB
testcase_01 AC 46 ms
55,808 KB
testcase_02 AC 41 ms
55,552 KB
testcase_03 AC 41 ms
55,808 KB
testcase_04 AC 40 ms
55,680 KB
testcase_05 AC 41 ms
55,424 KB
testcase_06 AC 44 ms
55,424 KB
testcase_07 AC 41 ms
55,424 KB
testcase_08 AC 82 ms
98,944 KB
testcase_09 AC 77 ms
93,824 KB
testcase_10 AC 73 ms
91,392 KB
testcase_11 AC 67 ms
87,040 KB
testcase_12 AC 69 ms
85,248 KB
testcase_13 AC 77 ms
99,072 KB
testcase_14 AC 76 ms
95,404 KB
testcase_15 AC 82 ms
98,452 KB
testcase_16 AC 93 ms
108,160 KB
testcase_17 AC 89 ms
104,832 KB
testcase_18 AC 92 ms
106,796 KB
testcase_19 AC 93 ms
106,824 KB
testcase_20 AC 92 ms
107,008 KB
testcase_21 AC 90 ms
106,608 KB
testcase_22 AC 94 ms
107,008 KB
testcase_23 AC 91 ms
106,840 KB
testcase_24 AC 98 ms
106,864 KB
testcase_25 AC 91 ms
107,096 KB
testcase_26 AC 41 ms
55,680 KB
testcase_27 AC 67 ms
87,808 KB
testcase_28 AC 69 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998244353

def solve(N,P):
    pos = [-1 for i in range(N)]
    for i in range(N):
        pos[P[i]] = i

    assert -1 not in pos

    L,R = N,-1
    res = 1
    for i in range(N):
        if L <= pos[i] <= R:
            res *= R-L+1 - i
            res %= mod
        else:
            L = min(pos[i],L)
            R = max(pos[i],R)

    return res

N = int(input())
P = li()
print(solve(N,P))
0