結果

問題 No.2879 Range Flip Queries
ユーザー miya145592miya145592
提出日時 2024-09-08 13:11:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 249,552 KB
最終ジャッジ日時 2024-09-08 13:12:14
合計ジャッジ時間 15,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,560 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 37 ms
53,316 KB
testcase_03 AC 276 ms
125,568 KB
testcase_04 AC 313 ms
125,812 KB
testcase_05 AC 305 ms
125,596 KB
testcase_06 AC 295 ms
125,772 KB
testcase_07 AC 304 ms
125,568 KB
testcase_08 AC 44 ms
59,936 KB
testcase_09 AC 39 ms
53,348 KB
testcase_10 AC 43 ms
54,264 KB
testcase_11 AC 42 ms
58,640 KB
testcase_12 AC 46 ms
60,664 KB
testcase_13 AC 401 ms
174,956 KB
testcase_14 AC 456 ms
183,756 KB
testcase_15 AC 331 ms
140,112 KB
testcase_16 AC 190 ms
118,976 KB
testcase_17 AC 357 ms
204,032 KB
testcase_18 AC 568 ms
247,868 KB
testcase_19 AC 535 ms
248,576 KB
testcase_20 AC 561 ms
248,276 KB
testcase_21 AC 545 ms
249,040 KB
testcase_22 AC 559 ms
248,440 KB
testcase_23 AC 533 ms
248,072 KB
testcase_24 AC 563 ms
241,084 KB
testcase_25 AC 531 ms
241,564 KB
testcase_26 AC 562 ms
241,128 KB
testcase_27 AC 535 ms
241,332 KB
testcase_28 AC 563 ms
241,224 KB
testcase_29 AC 493 ms
249,376 KB
testcase_30 AC 480 ms
249,552 KB
testcase_31 AC 516 ms
249,396 KB
testcase_32 AC 487 ms
249,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, Q = map(int, input().split())
A = list(map(int, input().split()))
LR = [list(map(int, input().split())) for _ in range(Q)]
dp = [0 for _ in range(N)]
for l, r in LR:
    l-=1
    dp[l] += 1
    if r<N:
        dp[r] -= 1
S = [0]
for d in dp:
    S.append((S[-1]+d)%2)
ans = []
for i in range(N):
    ans.append(A[i]^S[i+1])
print(*ans)
0