結果

問題 No.2879 Range Flip Queries
ユーザー titiatitia
提出日時 2024-09-22 02:29:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,349 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,092 KB
最終ジャッジ日時 2024-09-22 02:30:06
合計ジャッジ時間 29,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 679 ms
10,496 KB
testcase_04 AC 637 ms
10,496 KB
testcase_05 AC 662 ms
10,624 KB
testcase_06 AC 637 ms
10,624 KB
testcase_07 AC 650 ms
10,496 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 28 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 957 ms
29,464 KB
testcase_14 AC 981 ms
30,820 KB
testcase_15 AC 670 ms
19,996 KB
testcase_16 AC 366 ms
22,428 KB
testcase_17 AC 811 ms
39,460 KB
testcase_18 AC 1,229 ms
42,448 KB
testcase_19 AC 1,349 ms
42,720 KB
testcase_20 AC 1,265 ms
42,572 KB
testcase_21 AC 1,262 ms
43,036 KB
testcase_22 AC 1,267 ms
42,596 KB
testcase_23 AC 1,284 ms
42,316 KB
testcase_24 AC 1,312 ms
42,796 KB
testcase_25 AC 1,324 ms
43,052 KB
testcase_26 AC 1,291 ms
43,048 KB
testcase_27 AC 1,302 ms
43,048 KB
testcase_28 AC 1,286 ms
43,092 KB
testcase_29 AC 1,201 ms
43,000 KB
testcase_30 AC 1,198 ms
42,920 KB
testcase_31 AC 1,196 ms
43,056 KB
testcase_32 AC 1,162 ms
42,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


N,Q=map(int,input().split())
A=list(map(int,input().split()))

X=[0]*(N+3)

for i in range(Q):
    x,y=map(int,input().split())
    X[x-1]+=1
    X[y]+=1

for i in range(1,N+3):
    X[i]+=X[i-1]

for i in range(N):
    if X[i]%2==1:
        A[i]^=1

print(*A)
0