結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 👑 obakyanobakyan
提出日時 2021-11-14 23:24:21
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-07 15:37:27
合計ジャッジ時間 12,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 136 ms
6,940 KB
testcase_17 AC 286 ms
9,216 KB
testcase_18 AC 196 ms
9,088 KB
testcase_19 AC 75 ms
6,940 KB
testcase_20 AC 86 ms
5,376 KB
testcase_21 AC 280 ms
9,344 KB
testcase_22 AC 280 ms
9,088 KB
testcase_23 AC 274 ms
9,216 KB
testcase_24 AC 270 ms
9,216 KB
testcase_25 AC 275 ms
9,216 KB
testcase_26 AC 277 ms
9,216 KB
testcase_27 AC 285 ms
9,216 KB
testcase_28 AC 274 ms
9,216 KB
testcase_29 AC 276 ms
9,216 KB
testcase_30 AC 281 ms
9,216 KB
testcase_31 AC 270 ms
9,216 KB
testcase_32 AC 246 ms
9,216 KB
testcase_33 AC 241 ms
9,216 KB
testcase_34 AC 240 ms
9,216 KB
testcase_35 AC 248 ms
9,216 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
local a = {}
for i = 1, n do a[i] = io.read("*n") end
local t = {}
for i = 1, n do t[i] = "B" end
local idx = {}
for i = 1, n do
  a[i] = a[i] - io.read("*n")
  idx[i] = i
end
table.sort(idx, function(x, y) return a[x] > a[y] end)
for i = 1, k do
  t[idx[i]] = "A"
end
print(table.concat(t))
0