結果

問題 No.1709 Indistinguishable by MEX
ユーザー simansiman
提出日時 2023-09-14 17:49:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 38,192 KB
最終ジャッジ日時 2024-07-02 00:55:09
合計ジャッジ時間 9,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 90 ms
12,288 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 91 ms
12,288 KB
testcase_08 AC 320 ms
34,412 KB
testcase_09 AC 279 ms
30,848 KB
testcase_10 AC 260 ms
29,440 KB
testcase_11 AC 226 ms
28,032 KB
testcase_12 AC 232 ms
27,648 KB
testcase_13 AC 294 ms
32,948 KB
testcase_14 AC 281 ms
31,104 KB
testcase_15 AC 289 ms
33,104 KB
testcase_16 AC 344 ms
37,156 KB
testcase_17 AC 329 ms
35,972 KB
testcase_18 AC 366 ms
38,192 KB
testcase_19 AC 364 ms
38,104 KB
testcase_20 AC 369 ms
37,960 KB
testcase_21 AC 355 ms
38,100 KB
testcase_22 AC 360 ms
37,948 KB
testcase_23 AC 337 ms
38,192 KB
testcase_24 AC 341 ms
37,924 KB
testcase_25 AC 338 ms
37,996 KB
testcase_26 AC 90 ms
12,160 KB
testcase_27 AC 223 ms
28,544 KB
testcase_28 AC 209 ms
27,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
P = gets.split.map(&:to_i)
MOD = 998_244_353

pos = Hash.new
P.each_with_index do |v, i|
  pos[v] = i
end

l = Float::INFINITY
r = -Float::INFINITY
ans = 1

0.upto(N - 1) do |x|
  i = pos[x]

  if (l..r).cover?(i)
    ans *= (r - l - x + 1)
    ans %= MOD
  else
    l = i if l > i
    r = i if r < i
  end
end

puts ans
0