結果

問題 No.1709 Indistinguishable by MEX
ユーザー tamatotamato
提出日時 2021-10-15 21:52:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 131,968 KB
最終ジャッジ日時 2024-09-17 17:26:39
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,356 KB
testcase_08 AC 108 ms
119,760 KB
testcase_09 AC 101 ms
112,256 KB
testcase_10 AC 94 ms
107,008 KB
testcase_11 AC 86 ms
101,376 KB
testcase_12 AC 86 ms
97,152 KB
testcase_13 AC 107 ms
119,424 KB
testcase_14 AC 100 ms
113,536 KB
testcase_15 AC 107 ms
118,912 KB
testcase_16 AC 128 ms
127,248 KB
testcase_17 AC 124 ms
131,968 KB
testcase_18 AC 132 ms
122,624 KB
testcase_19 AC 135 ms
122,624 KB
testcase_20 AC 137 ms
122,792 KB
testcase_21 AC 133 ms
122,752 KB
testcase_22 AC 132 ms
122,656 KB
testcase_23 AC 122 ms
122,460 KB
testcase_24 AC 121 ms
122,524 KB
testcase_25 AC 122 ms
122,512 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 83 ms
101,120 KB
testcase_28 AC 82 ms
96,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    idx = {p: i for i, p in enumerate(P)}
    i0 = idx[0]
    l = r = i0
    ans = 1
    for p in range(1, N):
        i = idx[p]
        if i < l:
            l = i
        elif i > r:
            r = i
        else:
            ans = (ans * (r - l + 1 - p))%mod
    print(ans)


if __name__ == '__main__':
    main()
0