結果

問題 No.2774 Wake up Record 2
ユーザー 👑 obakyanobakyan
提出日時 2024-08-15 21:28:42
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-08-15 21:28:44
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 68 ms
6,144 KB
testcase_14 AC 88 ms
5,888 KB
testcase_15 AC 89 ms
5,888 KB
testcase_16 AC 90 ms
5,888 KB
testcase_17 AC 94 ms
7,040 KB
testcase_18 AC 78 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
local t = {}
local a = {}
local v = {}
for i = 1, n do
  t[i] = i
  a[i] = io.read("*n")
  v[i] = 1
end
table.sort(t, function(x, y) return a[x] < a[y] end)
for i = 1, k do
  v[t[i]] = 0
end
local ans = {}
for i = 2, n do
  if v[i - 1] < v[i] then
    table.insert(ans, i)
  end
end
print(#ans)
print(table.concat(ans, " "))
0