結果

問題 No.2879 Range Flip Queries
ユーザー vwxyzvwxyz
提出日時 2024-09-08 15:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 148,684 KB
最終ジャッジ日時 2024-09-08 15:33:01
合計ジャッジ時間 14,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,100 KB
testcase_01 AC 34 ms
52,564 KB
testcase_02 AC 33 ms
52,948 KB
testcase_03 AC 255 ms
76,340 KB
testcase_04 AC 259 ms
76,148 KB
testcase_05 AC 264 ms
76,072 KB
testcase_06 AC 255 ms
75,976 KB
testcase_07 AC 248 ms
76,220 KB
testcase_08 AC 42 ms
60,108 KB
testcase_09 AC 35 ms
53,212 KB
testcase_10 AC 40 ms
59,168 KB
testcase_11 AC 41 ms
55,216 KB
testcase_12 AC 45 ms
60,444 KB
testcase_13 AC 410 ms
121,228 KB
testcase_14 AC 401 ms
126,508 KB
testcase_15 AC 299 ms
97,900 KB
testcase_16 AC 170 ms
103,408 KB
testcase_17 AC 327 ms
134,152 KB
testcase_18 AC 495 ms
144,836 KB
testcase_19 AC 526 ms
144,676 KB
testcase_20 AC 493 ms
144,716 KB
testcase_21 AC 517 ms
148,684 KB
testcase_22 AC 482 ms
145,020 KB
testcase_23 AC 489 ms
144,492 KB
testcase_24 AC 514 ms
148,188 KB
testcase_25 AC 498 ms
148,448 KB
testcase_26 AC 510 ms
148,248 KB
testcase_27 AC 483 ms
148,496 KB
testcase_28 AC 511 ms
148,244 KB
testcase_29 AC 399 ms
148,432 KB
testcase_30 AC 415 ms
148,592 KB
testcase_31 AC 428 ms
148,364 KB
testcase_32 AC 406 ms
148,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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