結果

問題 No.2779 Don't make Pair
ユーザー 👑 obakyanobakyan
提出日時 2024-09-07 14:16:55
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 13,980 KB
最終ジャッジ日時 2024-09-07 14:16:59
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,948 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 22 ms
6,944 KB
testcase_13 AC 22 ms
7,008 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 33 ms
8,712 KB
testcase_16 AC 36 ms
9,888 KB
testcase_17 AC 32 ms
8,228 KB
testcase_18 AC 28 ms
8,348 KB
testcase_19 AC 28 ms
7,204 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 40 ms
8,740 KB
testcase_22 AC 30 ms
6,980 KB
testcase_23 AC 58 ms
13,980 KB
testcase_24 AC 38 ms
9,120 KB
testcase_25 AC 37 ms
8,740 KB
testcase_26 AC 42 ms
10,144 KB
testcase_27 AC 46 ms
11,424 KB
testcase_28 AC 43 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = io.read("*n")
a = {}
for i = 1, n do
  a[i] = io.read("*n")
end

l = {true}
t = {}
t[a[1]] = true
for i = 2, n do
  ai = a[i]
  if t[ai] then
    for j = i, n do
      l[j] = false
    end
    break
  else
    l[i] = true
    t[ai] = true
  end
end
r = {}
for i = 1, n do r[i] = false end
r[n] = true
t = {}
t[a[n]] = true
for i = n - 1, 1, -1 do
  ai = a[i]
  if t[ai] then
    for j = i, 1, -1 do
      r[j] = false
    end
    break
  else
    r[i] = true
    t[ai] = true
  end
end
ans = {}
for i = 1, n - 1 do
  if l[i] and r[i + 1] then
    table.insert(ans, i)
  end
end
print(#ans)
print(table.concat(ans, " "))
0