結果

問題 No.2879 Range Flip Queries
ユーザー nessiennessien
提出日時 2024-11-27 11:41:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 144,644 KB
最終ジャッジ日時 2024-11-27 11:42:17
合計ジャッジ時間 18,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 269 ms
76,288 KB
testcase_04 AC 253 ms
75,904 KB
testcase_05 AC 268 ms
76,032 KB
testcase_06 AC 264 ms
76,160 KB
testcase_07 AC 267 ms
75,648 KB
testcase_08 AC 49 ms
58,880 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 46 ms
58,496 KB
testcase_11 AC 43 ms
54,144 KB
testcase_12 AC 50 ms
60,032 KB
testcase_13 AC 375 ms
118,272 KB
testcase_14 AC 393 ms
123,648 KB
testcase_15 AC 299 ms
96,640 KB
testcase_16 AC 171 ms
102,016 KB
testcase_17 AC 322 ms
130,840 KB
testcase_18 AC 485 ms
140,764 KB
testcase_19 AC 483 ms
144,176 KB
testcase_20 AC 521 ms
143,916 KB
testcase_21 AC 476 ms
144,276 KB
testcase_22 AC 482 ms
143,912 KB
testcase_23 AC 499 ms
140,756 KB
testcase_24 AC 468 ms
144,264 KB
testcase_25 AC 486 ms
144,140 KB
testcase_26 AC 483 ms
144,144 KB
testcase_27 AC 477 ms
144,528 KB
testcase_28 AC 478 ms
144,644 KB
testcase_29 AC 398 ms
144,144 KB
testcase_30 AC 434 ms
144,264 KB
testcase_31 AC 412 ms
144,260 KB
testcase_32 AC 447 ms
144,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = [0]*(N+1) 
for i in range(Q):
	l, r = map(int,input().split())
	l -= 1 
	r -= 1 
	S[l] += 1 
	S[r+1] -= 1 
for i in range(1,N+1):
	S[i] += S[i-1]

ans = [None]*N 
for i in range(N):
	ans[i] = (A[i] + S[i]) % 2
print(*ans)
0