結果

問題 No.2879 Range Flip Queries
ユーザー Meso MesoMeso Meso
提出日時 2024-09-13 19:04:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 144,808 KB
最終ジャッジ日時 2024-09-13 19:05:03
合計ジャッジ時間 15,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 280 ms
76,160 KB
testcase_04 AC 304 ms
76,100 KB
testcase_05 AC 270 ms
76,232 KB
testcase_06 AC 279 ms
75,904 KB
testcase_07 AC 279 ms
76,032 KB
testcase_08 AC 51 ms
59,008 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 50 ms
58,496 KB
testcase_11 AC 48 ms
53,760 KB
testcase_12 AC 52 ms
60,160 KB
testcase_13 AC 411 ms
118,272 KB
testcase_14 AC 434 ms
123,264 KB
testcase_15 AC 323 ms
96,512 KB
testcase_16 AC 193 ms
101,760 KB
testcase_17 AC 349 ms
131,004 KB
testcase_18 AC 561 ms
140,788 KB
testcase_19 AC 540 ms
141,292 KB
testcase_20 AC 575 ms
140,652 KB
testcase_21 AC 534 ms
144,556 KB
testcase_22 AC 525 ms
140,700 KB
testcase_23 AC 516 ms
140,532 KB
testcase_24 AC 526 ms
144,420 KB
testcase_25 AC 550 ms
144,416 KB
testcase_26 AC 522 ms
144,316 KB
testcase_27 AC 544 ms
144,420 KB
testcase_28 AC 538 ms
144,412 KB
testcase_29 AC 450 ms
144,432 KB
testcase_30 AC 440 ms
144,292 KB
testcase_31 AC 443 ms
144,732 KB
testcase_32 AC 435 ms
144,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = list(map(int, input().split()))
a = [0] * (n+1)
for i in range(q):
    l, r = map(int, input().split())
    l -= 1
    a[l] ^= 1
    a[r] ^= 1

for i in range(n):
    a[i+1] ^= a[i]
    s[i] ^= a[i]
    
print(*s)
0