結果

問題 No.2879 Range Flip Queries
ユーザー hiro1729hiro1729
提出日時 2024-06-09 18:12:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 144,716 KB
最終ジャッジ日時 2024-09-08 12:00:32
合計ジャッジ時間 13,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,532 KB
testcase_01 AC 36 ms
53,268 KB
testcase_02 AC 35 ms
52,572 KB
testcase_03 AC 248 ms
76,020 KB
testcase_04 AC 255 ms
76,148 KB
testcase_05 AC 259 ms
76,008 KB
testcase_06 AC 248 ms
76,144 KB
testcase_07 AC 249 ms
76,240 KB
testcase_08 AC 43 ms
59,328 KB
testcase_09 AC 36 ms
53,212 KB
testcase_10 AC 41 ms
59,136 KB
testcase_11 AC 42 ms
54,608 KB
testcase_12 AC 45 ms
61,356 KB
testcase_13 AC 375 ms
118,224 KB
testcase_14 AC 379 ms
123,740 KB
testcase_15 AC 280 ms
96,568 KB
testcase_16 AC 170 ms
102,440 KB
testcase_17 AC 307 ms
131,228 KB
testcase_18 AC 494 ms
144,204 KB
testcase_19 AC 474 ms
144,444 KB
testcase_20 AC 478 ms
144,092 KB
testcase_21 AC 481 ms
144,324 KB
testcase_22 AC 476 ms
143,968 KB
testcase_23 AC 463 ms
144,200 KB
testcase_24 AC 502 ms
144,716 KB
testcase_25 AC 477 ms
144,588 KB
testcase_26 AC 473 ms
144,460 KB
testcase_27 AC 467 ms
144,476 KB
testcase_28 AC 478 ms
144,396 KB
testcase_29 AC 417 ms
144,376 KB
testcase_30 AC 406 ms
144,456 KB
testcase_31 AC 409 ms
144,472 KB
testcase_32 AC 396 ms
144,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
assert(1 <= N <= 500000 and 1 <= Q <= 500000)
A = list(map(int, input().split()))
c = [0] * (N + 1) # xor版いもす法
for _ in range(Q):
	L, R = map(int, input().split())
	assert(1 <= L <= R <= N)
	c[L - 1] ^= 1
	c[R] ^= 1
for i in range(N):
	c[i + 1] ^= c[i]
print(*[c[i] ^ A[i] for i in range(N)])
try:
	input()
	assert(False)
except:
	pass
0