結果

問題 No.2879 Range Flip Queries
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 07:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 152,580 KB
最終ジャッジ日時 2024-09-09 07:42:55
合計ジャッジ時間 15,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 39 ms
52,944 KB
testcase_03 AC 270 ms
76,516 KB
testcase_04 AC 276 ms
75,824 KB
testcase_05 AC 278 ms
76,032 KB
testcase_06 AC 266 ms
75,960 KB
testcase_07 AC 267 ms
76,124 KB
testcase_08 AC 46 ms
59,924 KB
testcase_09 AC 41 ms
53,816 KB
testcase_10 AC 45 ms
59,472 KB
testcase_11 AC 45 ms
55,228 KB
testcase_12 AC 48 ms
60,028 KB
testcase_13 AC 449 ms
123,288 KB
testcase_14 AC 434 ms
129,052 KB
testcase_15 AC 316 ms
98,900 KB
testcase_16 AC 187 ms
104,964 KB
testcase_17 AC 342 ms
137,748 KB
testcase_18 AC 524 ms
152,048 KB
testcase_19 AC 527 ms
151,952 KB
testcase_20 AC 518 ms
151,732 KB
testcase_21 AC 521 ms
152,236 KB
testcase_22 AC 518 ms
152,292 KB
testcase_23 AC 513 ms
152,080 KB
testcase_24 AC 524 ms
152,448 KB
testcase_25 AC 528 ms
152,272 KB
testcase_26 AC 526 ms
152,408 KB
testcase_27 AC 527 ms
152,068 KB
testcase_28 AC 529 ms
152,324 KB
testcase_29 AC 440 ms
152,572 KB
testcase_30 AC 433 ms
152,460 KB
testcase_31 AC 437 ms
152,216 KB
testcase_32 AC 437 ms
152,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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