結果

問題 No.2774 Wake up Record 2
ユーザー にせぽこにせぽこ
提出日時 2024-08-27 00:08:39
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-27 00:08:42
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 24 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

-- 標準入力を読み取る
local N, K = io.read("*n", "*n")
local A = {}
for i = 1, N do
    A[i] = io.read("*n")
end

-- 結果を格納するためのテーブル
local result = {}

-- 時間kで起きていて、時間k-1で寝ている場合を見つける
for k = 2, N do
    if A[k] > K and A[k-1] <= K then
        table.insert(result, k)
    end
end

-- 結果の個数を出力
print(#result)

-- 結果を昇順で出力
if #result > 0 then
    print(table.concat(result, " "))
end
0