結果

問題 No.1709 Indistinguishable by MEX
ユーザー とりゐとりゐ
提出日時 2022-05-28 16:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-20 23:14:22
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 82 ms
96,640 KB
testcase_09 AC 77 ms
91,264 KB
testcase_10 AC 72 ms
88,448 KB
testcase_11 AC 67 ms
84,608 KB
testcase_12 AC 66 ms
82,048 KB
testcase_13 AC 80 ms
96,768 KB
testcase_14 AC 76 ms
92,800 KB
testcase_15 AC 79 ms
95,616 KB
testcase_16 AC 91 ms
106,112 KB
testcase_17 AC 87 ms
101,632 KB
testcase_18 AC 92 ms
106,240 KB
testcase_19 AC 91 ms
105,984 KB
testcase_20 AC 91 ms
106,240 KB
testcase_21 AC 92 ms
107,520 KB
testcase_22 AC 91 ms
107,392 KB
testcase_23 AC 92 ms
107,136 KB
testcase_24 AC 92 ms
106,368 KB
testcase_25 AC 93 ms
106,496 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 68 ms
84,992 KB
testcase_28 AC 66 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=list(map(int,input().split()))
idx=[0]*n
for i in range(n):
  idx[p[i]]=i

mod=998244353
ans=1
L,R=idx[0],idx[0]
size=0
for i in idx[1:]:
  if L<i<R:
    ans*=size
    ans%=mod
    size-=1
  else:
    if i<L:
      size+=L-i-1
      L=i
    else:
      size+=i-R-1
      R=i

print(ans)
0