結果

問題 No.2879 Range Flip Queries
ユーザー flippergoflippergo
提出日時 2024-10-04 15:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 148,748 KB
最終ジャッジ日時 2024-10-04 15:58:08
合計ジャッジ時間 18,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 247 ms
76,416 KB
testcase_04 AC 242 ms
76,160 KB
testcase_05 AC 239 ms
76,032 KB
testcase_06 AC 237 ms
76,032 KB
testcase_07 AC 237 ms
75,852 KB
testcase_08 AC 43 ms
58,880 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 57 ms
59,064 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 43 ms
59,776 KB
testcase_13 AC 386 ms
120,576 KB
testcase_14 AC 370 ms
126,028 KB
testcase_15 AC 307 ms
97,536 KB
testcase_16 AC 166 ms
103,984 KB
testcase_17 AC 304 ms
134,288 KB
testcase_18 AC 482 ms
144,856 KB
testcase_19 AC 507 ms
147,808 KB
testcase_20 AC 478 ms
148,144 KB
testcase_21 AC 506 ms
148,240 KB
testcase_22 AC 473 ms
147,888 KB
testcase_23 AC 501 ms
144,848 KB
testcase_24 AC 476 ms
148,368 KB
testcase_25 AC 464 ms
148,240 KB
testcase_26 AC 484 ms
148,232 KB
testcase_27 AC 481 ms
148,388 KB
testcase_28 AC 501 ms
148,364 KB
testcase_29 AC 398 ms
148,364 KB
testcase_30 AC 426 ms
148,232 KB
testcase_31 AC 392 ms
148,484 KB
testcase_32 AC 387 ms
148,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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