結果

問題 No.2879 Range Flip Queries
ユーザー わんわん
提出日時 2024-09-09 22:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 144,776 KB
最終ジャッジ日時 2024-09-09 22:34:45
合計ジャッジ時間 14,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,416 KB
testcase_01 AC 40 ms
52,504 KB
testcase_02 AC 37 ms
53,184 KB
testcase_03 AC 265 ms
76,240 KB
testcase_04 AC 265 ms
76,560 KB
testcase_05 AC 263 ms
75,976 KB
testcase_06 AC 262 ms
76,264 KB
testcase_07 AC 271 ms
76,280 KB
testcase_08 AC 44 ms
59,860 KB
testcase_09 AC 38 ms
53,048 KB
testcase_10 AC 44 ms
60,000 KB
testcase_11 AC 42 ms
54,568 KB
testcase_12 AC 45 ms
60,068 KB
testcase_13 AC 417 ms
118,540 KB
testcase_14 AC 436 ms
123,764 KB
testcase_15 AC 324 ms
96,672 KB
testcase_16 AC 186 ms
102,332 KB
testcase_17 AC 338 ms
131,688 KB
testcase_18 AC 531 ms
141,044 KB
testcase_19 AC 532 ms
140,888 KB
testcase_20 AC 535 ms
140,776 KB
testcase_21 AC 524 ms
144,448 KB
testcase_22 AC 527 ms
141,068 KB
testcase_23 AC 519 ms
140,556 KB
testcase_24 AC 531 ms
144,364 KB
testcase_25 AC 534 ms
144,604 KB
testcase_26 AC 515 ms
144,528 KB
testcase_27 AC 530 ms
144,776 KB
testcase_28 AC 524 ms
144,424 KB
testcase_29 AC 417 ms
144,416 KB
testcase_30 AC 413 ms
144,572 KB
testcase_31 AC 425 ms
144,588 KB
testcase_32 AC 422 ms
144,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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