結果

問題 No.2879 Range Flip Queries
ユーザー vwxyzvwxyz
提出日時 2024-09-08 15:32:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 246 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,640 KB
最終ジャッジ日時 2024-09-08 15:33:08
合計ジャッジ時間 53,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 1,612 ms
10,752 KB
testcase_04 AC 1,581 ms
10,752 KB
testcase_05 AC 1,642 ms
10,752 KB
testcase_06 AC 1,541 ms
10,752 KB
testcase_07 AC 1,563 ms
10,752 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 1,846 ms
20,520 KB
testcase_14 AC 1,964 ms
21,104 KB
testcase_15 AC 1,461 ms
15,780 KB
testcase_16 AC 567 ms
16,884 KB
testcase_17 AC 1,295 ms
25,756 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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