結果

問題 No.2879 Range Flip Queries
ユーザー Basin-BugBasin-Bug
提出日時 2024-09-16 23:59:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 144,740 KB
最終ジャッジ日時 2024-09-16 23:59:34
合計ジャッジ時間 19,574 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 265 ms
76,172 KB
testcase_04 AC 267 ms
76,176 KB
testcase_05 AC 264 ms
76,000 KB
testcase_06 AC 277 ms
76,204 KB
testcase_07 AC 270 ms
76,368 KB
testcase_08 AC 48 ms
59,392 KB
testcase_09 AC 42 ms
52,608 KB
testcase_10 AC 48 ms
59,520 KB
testcase_11 AC 45 ms
54,400 KB
testcase_12 AC 50 ms
60,288 KB
testcase_13 AC 409 ms
118,240 KB
testcase_14 AC 450 ms
124,096 KB
testcase_15 AC 310 ms
96,564 KB
testcase_16 AC 184 ms
102,480 KB
testcase_17 AC 335 ms
131,040 KB
testcase_18 AC 498 ms
144,084 KB
testcase_19 AC 506 ms
143,972 KB
testcase_20 AC 499 ms
144,272 KB
testcase_21 AC 498 ms
144,308 KB
testcase_22 AC 536 ms
144,436 KB
testcase_23 AC 499 ms
144,244 KB
testcase_24 AC 515 ms
144,460 KB
testcase_25 AC 501 ms
144,332 KB
testcase_26 AC 526 ms
144,460 KB
testcase_27 AC 508 ms
144,212 KB
testcase_28 AC 515 ms
144,564 KB
testcase_29 AC 406 ms
144,196 KB
testcase_30 AC 409 ms
144,740 KB
testcase_31 AC 437 ms
144,456 KB
testcase_32 AC 414 ms
144,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))

imos = [0] * (N + 1)
for i in range(Q):
  l, r = map(int, input().split())
  imos[l - 1] += 1
  imos[r] -= 1 

sum_imos = [0] * (N + 2)
for i in range(1, N + 2):
  sum_imos[i] = sum_imos[i - 1] + imos[i - 1]

for i in range(N):
  if sum_imos[i + 1] % 2 == 0:
  	print(A[i], end = " ")
  else:
  	print(1 - A[i], end = " ")
 
print()
0