結果

問題 No.2879 Range Flip Queries
ユーザー KudeKude
提出日時 2024-09-08 12:33:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 144,936 KB
最終ジャッジ日時 2024-09-08 12:33:56
合計ジャッジ時間 14,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,888 KB
testcase_01 AC 38 ms
53,004 KB
testcase_02 AC 40 ms
52,516 KB
testcase_03 AC 263 ms
76,120 KB
testcase_04 AC 270 ms
76,036 KB
testcase_05 AC 264 ms
76,224 KB
testcase_06 AC 262 ms
76,168 KB
testcase_07 AC 263 ms
76,008 KB
testcase_08 AC 47 ms
59,568 KB
testcase_09 AC 41 ms
53,688 KB
testcase_10 AC 45 ms
58,828 KB
testcase_11 AC 45 ms
54,868 KB
testcase_12 AC 48 ms
60,900 KB
testcase_13 AC 399 ms
118,680 KB
testcase_14 AC 422 ms
123,896 KB
testcase_15 AC 347 ms
96,476 KB
testcase_16 AC 183 ms
101,972 KB
testcase_17 AC 331 ms
131,452 KB
testcase_18 AC 534 ms
141,116 KB
testcase_19 AC 512 ms
141,012 KB
testcase_20 AC 540 ms
140,736 KB
testcase_21 AC 511 ms
144,372 KB
testcase_22 AC 506 ms
140,656 KB
testcase_23 AC 504 ms
141,116 KB
testcase_24 AC 542 ms
144,324 KB
testcase_25 AC 515 ms
144,788 KB
testcase_26 AC 539 ms
144,384 KB
testcase_27 AC 518 ms
144,780 KB
testcase_28 AC 545 ms
144,480 KB
testcase_29 AC 424 ms
144,936 KB
testcase_30 AC 425 ms
144,480 KB
testcase_31 AC 423 ms
144,380 KB
testcase_32 AC 424 ms
144,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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