結果

問題 No.2879 Range Flip Queries
ユーザー ああいいああいい
提出日時 2024-10-05 13:19:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 144,864 KB
最終ジャッジ日時 2024-10-05 13:20:02
合計ジャッジ時間 16,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,572 KB
testcase_01 AC 33 ms
52,820 KB
testcase_02 AC 31 ms
52,904 KB
testcase_03 AC 234 ms
76,372 KB
testcase_04 AC 230 ms
76,252 KB
testcase_05 AC 242 ms
76,176 KB
testcase_06 AC 230 ms
75,976 KB
testcase_07 AC 241 ms
75,976 KB
testcase_08 AC 40 ms
60,460 KB
testcase_09 AC 37 ms
54,368 KB
testcase_10 AC 42 ms
59,692 KB
testcase_11 AC 37 ms
54,956 KB
testcase_12 AC 42 ms
60,100 KB
testcase_13 AC 339 ms
118,372 KB
testcase_14 AC 380 ms
123,736 KB
testcase_15 AC 262 ms
96,256 KB
testcase_16 AC 158 ms
101,872 KB
testcase_17 AC 282 ms
131,116 KB
testcase_18 AC 453 ms
140,816 KB
testcase_19 AC 446 ms
140,772 KB
testcase_20 AC 459 ms
141,108 KB
testcase_21 AC 481 ms
144,520 KB
testcase_22 AC 435 ms
140,708 KB
testcase_23 AC 445 ms
140,696 KB
testcase_24 AC 427 ms
144,356 KB
testcase_25 AC 427 ms
144,184 KB
testcase_26 AC 461 ms
144,232 KB
testcase_27 AC 427 ms
144,456 KB
testcase_28 AC 469 ms
144,596 KB
testcase_29 AC 372 ms
144,864 KB
testcase_30 AC 381 ms
144,508 KB
testcase_31 AC 402 ms
144,384 KB
testcase_32 AC 373 ms
144,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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