結果

問題 No.2879 Range Flip Queries
ユーザー kyotoku1483kyotoku1483
提出日時 2024-09-21 23:25:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 144,664 KB
最終ジャッジ日時 2024-09-21 23:25:47
合計ジャッジ時間 15,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,584 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 290 ms
76,032 KB
testcase_04 AC 281 ms
75,648 KB
testcase_05 AC 283 ms
76,288 KB
testcase_06 AC 286 ms
76,160 KB
testcase_07 AC 287 ms
76,160 KB
testcase_08 AC 57 ms
59,136 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 52 ms
58,368 KB
testcase_11 AC 47 ms
53,760 KB
testcase_12 AC 52 ms
59,520 KB
testcase_13 AC 446 ms
118,144 KB
testcase_14 AC 475 ms
123,776 KB
testcase_15 AC 337 ms
96,384 KB
testcase_16 AC 192 ms
101,632 KB
testcase_17 AC 371 ms
130,988 KB
testcase_18 AC 576 ms
140,648 KB
testcase_19 AC 551 ms
140,756 KB
testcase_20 AC 578 ms
140,632 KB
testcase_21 AC 575 ms
144,432 KB
testcase_22 AC 575 ms
141,024 KB
testcase_23 AC 555 ms
140,776 KB
testcase_24 AC 572 ms
144,412 KB
testcase_25 AC 555 ms
144,664 KB
testcase_26 AC 571 ms
144,416 KB
testcase_27 AC 552 ms
144,280 KB
testcase_28 AC 572 ms
144,408 KB
testcase_29 AC 456 ms
144,404 KB
testcase_30 AC 465 ms
144,268 KB
testcase_31 AC 455 ms
144,408 KB
testcase_32 AC 449 ms
144,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = list(map(int, input().split()))
b = [0] * n
for _ in range(q):
    l, r = map(int, input().split())
    l -= 1
    b[l] ^= 1
    if r < n:
        b[r] ^= 1

for i in range(1, n):
    b[i] ^= b[i - 1]

for i in range(n):
    a[i] ^= b[i]

print(*a)
0