結果

問題 No.2879 Range Flip Queries
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 07:39:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 152,420 KB
最終ジャッジ日時 2024-09-09 07:39:34
合計ジャッジ時間 18,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 259 ms
75,780 KB
testcase_05 WA -
testcase_06 AC 248 ms
76,116 KB
testcase_07 AC 253 ms
75,720 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,180 KB
testcase_10 AC 41 ms
59,296 KB
testcase_11 WA -
testcase_12 AC 44 ms
60,240 KB
testcase_13 WA -
testcase_14 AC 405 ms
128,816 KB
testcase_15 AC 300 ms
98,792 KB
testcase_16 AC 176 ms
104,420 KB
testcase_17 WA -
testcase_18 AC 502 ms
148,684 KB
testcase_19 AC 527 ms
152,168 KB
testcase_20 AC 493 ms
151,924 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 514 ms
152,084 KB
testcase_25 AC 493 ms
152,288 KB
testcase_26 AC 543 ms
152,348 KB
testcase_27 WA -
testcase_28 AC 520 ms
152,204 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 420 ms
152,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))
b=[0]*n+[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