結果

問題 No.2879 Range Flip Queries
ユーザー ルクルク
提出日時 2024-09-08 12:46:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 161,616 KB
最終ジャッジ日時 2024-09-08 12:46:48
合計ジャッジ時間 14,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=[0]*(n+1)
b=list(map(int,input().split()))+[0]
for i in range(m):
    l,r=map(int,input().split())
    a[l-1]+=1
    a[r]-=1
for i in range(n):
    a[i+1]+=a[i]
ans=[]
for i in range(n):
    ans.append((a[i]+b[i])%2)
print(*ans)
0