結果

問題 No.2879 Range Flip Queries
ユーザー miho-4miho-4
提出日時 2024-09-08 12:42:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 177,424 KB
最終ジャッジ日時 2024-09-08 12:43:12
合計ジャッジ時間 18,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 38 ms
52,620 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 482 ms
126,292 KB
testcase_04 AC 469 ms
126,420 KB
testcase_05 AC 466 ms
126,360 KB
testcase_06 AC 493 ms
126,612 KB
testcase_07 AC 466 ms
126,588 KB
testcase_08 AC 47 ms
61,016 KB
testcase_09 AC 39 ms
53,020 KB
testcase_10 AC 45 ms
60,468 KB
testcase_11 AC 46 ms
60,108 KB
testcase_12 AC 48 ms
61,632 KB
testcase_13 AC 564 ms
134,908 KB
testcase_14 AC 552 ms
138,412 KB
testcase_15 AC 450 ms
122,012 KB
testcase_16 AC 213 ms
101,576 KB
testcase_17 AC 402 ms
139,696 KB
testcase_18 AC 652 ms
175,248 KB
testcase_19 AC 660 ms
176,284 KB
testcase_20 AC 656 ms
175,440 KB
testcase_21 AC 662 ms
176,288 KB
testcase_22 AC 680 ms
175,636 KB
testcase_23 AC 641 ms
175,428 KB
testcase_24 AC 663 ms
177,424 KB
testcase_25 AC 689 ms
177,120 KB
testcase_26 AC 660 ms
177,184 KB
testcase_27 AC 658 ms
177,260 KB
testcase_28 AC 667 ms
177,104 KB
testcase_29 AC 633 ms
176,440 KB
testcase_30 AC 659 ms
176,440 KB
testcase_31 AC 638 ms
176,384 KB
testcase_32 AC 630 ms
176,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
L=list(map(int,input().split()))
Q=[list(map(int,input().split())) for _ in range(q)]
T=[0]*(n+1)
for l,r in Q:
  l-=1
  T[l]+=1
  T[r]-=1

for i in range(1,n+1):
  T[i]+=T[i-1]

for i in range(n):
  if T[i]%2==1:
    L[i]^=1
print(*L)
0