結果

問題 No.2879 Range Flip Queries
ユーザー 👑 obakyanobakyan
提出日時 2024-09-09 23:27:37
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-09 23:27:49
合計ジャッジ時間 10,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 153 ms
6,944 KB
testcase_04 AC 159 ms
6,940 KB
testcase_05 AC 165 ms
6,944 KB
testcase_06 AC 173 ms
6,940 KB
testcase_07 AC 172 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 240 ms
12,160 KB
testcase_14 AC 272 ms
12,288 KB
testcase_15 AC 176 ms
7,552 KB
testcase_16 AC 86 ms
7,680 KB
testcase_17 AC 223 ms
12,800 KB
testcase_18 AC 321 ms
12,928 KB
testcase_19 AC 307 ms
13,056 KB
testcase_20 AC 338 ms
13,056 KB
testcase_21 AC 316 ms
13,056 KB
testcase_22 AC 311 ms
13,056 KB
testcase_23 AC 364 ms
12,928 KB
testcase_24 AC 356 ms
13,056 KB
testcase_25 AC 326 ms
13,056 KB
testcase_26 AC 336 ms
13,056 KB
testcase_27 AC 322 ms
13,056 KB
testcase_28 AC 320 ms
13,184 KB
testcase_29 AC 276 ms
12,928 KB
testcase_30 AC 295 ms
13,056 KB
testcase_31 AC 278 ms
13,056 KB
testcase_32 AC 279 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, q = io.read("*n", "*n")
local a = {}
local f = {}
for i = 1, n do
  a[i] = io.read("*n")
  f[i] = 0
end
for i = 1, q do
  local l, r = io.read("*n", "*n")
  f[l] = 1 - f[l]
  if r < n then
    f[r + 1] = 1 - f[r + 1]
  end
end
local z = 0
for i = 1, n do 
  if f[i] == 1 then
    z = 1 - z
  end
  if z == 1 then
    a[i] = 1 - a[i]
  end
end
print(table.concat(a, " "))
0