結果

問題 No.1709 Indistinguishable by MEX
ユーザー 👑 obakyanobakyan
提出日時 2022-04-24 21:04:04
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 7,328 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-26 07:57:43
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 54 ms
6,784 KB
testcase_09 AC 44 ms
6,784 KB
testcase_10 AC 39 ms
5,376 KB
testcase_11 AC 32 ms
5,376 KB
testcase_12 AC 31 ms
5,376 KB
testcase_13 AC 46 ms
6,784 KB
testcase_14 AC 43 ms
6,784 KB
testcase_15 AC 45 ms
6,784 KB
testcase_16 AC 58 ms
6,784 KB
testcase_17 AC 53 ms
6,912 KB
testcase_18 AC 71 ms
6,912 KB
testcase_19 AC 68 ms
6,784 KB
testcase_20 AC 66 ms
6,912 KB
testcase_21 AC 59 ms
6,784 KB
testcase_22 AC 59 ms
6,784 KB
testcase_23 AC 52 ms
6,784 KB
testcase_24 AC 53 ms
6,912 KB
testcase_25 AC 52 ms
6,784 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 28 ms
5,376 KB
testcase_28 AC 26 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 998244353
local mfl = math.floor
local function bmul(x, y)
  local x0, y0 = x % 31596, y % 31596
  local x1, y1 = mfl(x / 31596), mfl(y / 31596)
  return (x1 * y1 * 62863 + (x1 * y0 + x0 * y1) * 31596 + x0 * y0) % mod
end

local n = io.read("*n")
local p = {}
local pinv = {}
for i = 1, n do pinv[i] = 0 end
for i = 1, n do
  p[i] = io.read("*n") + 1
  pinv[p[i]] = i
end
if n == 1 then print(1) os.exit() end
local internal_use = 0
local left = pinv[1]
local right = left
do
  local pos = pinv[2]
  if pos < left then left = pos else right = pos end
end
local ret = 1
for i = 3, n do
  local pos = pinv[i]
  if left < pos and pos < right then
    local remain = right - left - 1 - internal_use
    ret = bmul(ret, remain)
    internal_use = internal_use + 1
  else
    if pos < left then
      left = pos
    else
      right = pos
    end
    internal_use = internal_use + 1
  end
end
print(ret)
0