結果

問題 No.2879 Range Flip Queries
ユーザー hiro1729hiro1729
提出日時 2024-08-24 13:14:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 144,868 KB
最終ジャッジ日時 2024-09-08 12:01:19
合計ジャッジ時間 14,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 38 ms
52,860 KB
testcase_02 AC 38 ms
52,812 KB
testcase_03 AC 266 ms
76,348 KB
testcase_04 AC 263 ms
76,324 KB
testcase_05 AC 265 ms
75,968 KB
testcase_06 AC 265 ms
76,008 KB
testcase_07 AC 262 ms
75,976 KB
testcase_08 AC 45 ms
60,516 KB
testcase_09 AC 40 ms
54,376 KB
testcase_10 AC 44 ms
59,684 KB
testcase_11 AC 44 ms
55,300 KB
testcase_12 AC 47 ms
60,032 KB
testcase_13 AC 393 ms
118,176 KB
testcase_14 AC 411 ms
123,736 KB
testcase_15 AC 307 ms
96,532 KB
testcase_16 AC 177 ms
102,000 KB
testcase_17 AC 333 ms
131,200 KB
testcase_18 AC 501 ms
140,976 KB
testcase_19 AC 506 ms
140,636 KB
testcase_20 AC 505 ms
140,888 KB
testcase_21 AC 506 ms
144,428 KB
testcase_22 AC 497 ms
140,720 KB
testcase_23 AC 497 ms
140,556 KB
testcase_24 AC 503 ms
144,432 KB
testcase_25 AC 506 ms
144,868 KB
testcase_26 AC 505 ms
144,720 KB
testcase_27 AC 508 ms
144,360 KB
testcase_28 AC 511 ms
144,548 KB
testcase_29 AC 424 ms
144,244 KB
testcase_30 AC 426 ms
144,388 KB
testcase_31 AC 423 ms
144,420 KB
testcase_32 AC 420 ms
144,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
f = [0] * (N + 1)
for _ in range(Q):
	L, R = map(int, input().split())
	f[R] ^= 1
	f[L - 1] ^= 1
for i in range(N):
	f[i + 1] ^= f[i]
print(*[A[i] ^ f[i] for i in range(N)])
0