結果

問題 No.2879 Range Flip Queries
ユーザー kyotoku1483kyotoku1483
提出日時 2024-09-21 23:23:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,576 KB
最終ジャッジ日時 2024-09-21 23:24:58
合計ジャッジ時間 57,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,606 ms
10,752 KB
testcase_04 AC 1,601 ms
10,752 KB
testcase_05 AC 1,621 ms
10,752 KB
testcase_06 AC 1,583 ms
10,624 KB
testcase_07 AC 1,611 ms
10,624 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 1,962 ms
20,508 KB
testcase_14 TLE -
testcase_15 AC 1,473 ms
15,644 KB
testcase_16 AC 575 ms
16,924 KB
testcase_17 AC 1,328 ms
25,632 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()))
b = [0] * n
for _ in range(q):
    l, r = map(int, input().split())
    l -= 1
    b[l] ^= 1
    if r < n:
        b[r] ^= 1

for i in range(1, n):
    b[i] ^= b[i - 1]

for i in range(n):
    a[i] ^= b[i]

print(*a)
0