結果

問題 No.1709 Indistinguishable by MEX
ユーザー untiunti
提出日時 2021-05-28 00:06:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,756 KB
最終ジャッジ日時 2024-09-17 16:56:14
合計ジャッジ時間 5,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 220 ms
26,060 KB
testcase_09 AC 185 ms
24,048 KB
testcase_10 AC 165 ms
23,564 KB
testcase_11 AC 138 ms
21,252 KB
testcase_12 AC 130 ms
20,968 KB
testcase_13 AC 194 ms
25,956 KB
testcase_14 AC 171 ms
24,404 KB
testcase_15 AC 180 ms
25,492 KB
testcase_16 AC 231 ms
29,756 KB
testcase_17 AC 212 ms
27,276 KB
testcase_18 AC 252 ms
29,440 KB
testcase_19 AC 255 ms
29,552 KB
testcase_20 AC 267 ms
29,428 KB
testcase_21 AC 246 ms
29,432 KB
testcase_22 AC 236 ms
29,432 KB
testcase_23 AC 177 ms
29,432 KB
testcase_24 AC 186 ms
29,528 KB
testcase_25 AC 181 ms
29,432 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 118 ms
21,736 KB
testcase_28 AC 105 ms
21,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353 
n=int(input()) 
a = list(map(int, input().split())) 
place = [0 for i in range(n)]
for i in range(n) :
  place[a[i]] = i 
left = place[0] 
right = place[0]  
ans=1 
for i in range(n-1) :
  if place[i+1] < left :
    left = place[i+1] 
  elif place[i+1] > right :
    right = place[i+1] 
  else :
    ans=ans*(right-left-i) 
    ans%=mod

print(ans) 
0