結果

問題 No.2879 Range Flip Queries
ユーザー 👑 rin204rin204
提出日時 2024-09-08 14:17:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 144,708 KB
最終ジャッジ日時 2024-09-08 14:17:40
合計ジャッジ時間 14,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,064 KB
testcase_01 AC 36 ms
53,040 KB
testcase_02 AC 36 ms
52,832 KB
testcase_03 AC 264 ms
75,912 KB
testcase_04 AC 268 ms
75,968 KB
testcase_05 AC 262 ms
76,204 KB
testcase_06 AC 265 ms
76,072 KB
testcase_07 AC 264 ms
76,088 KB
testcase_08 AC 46 ms
59,388 KB
testcase_09 AC 39 ms
53,560 KB
testcase_10 AC 44 ms
61,048 KB
testcase_11 AC 44 ms
54,380 KB
testcase_12 AC 47 ms
60,532 KB
testcase_13 AC 391 ms
118,840 KB
testcase_14 AC 417 ms
123,908 KB
testcase_15 AC 321 ms
96,616 KB
testcase_16 AC 180 ms
101,856 KB
testcase_17 AC 331 ms
131,052 KB
testcase_18 AC 506 ms
140,972 KB
testcase_19 AC 514 ms
143,928 KB
testcase_20 AC 518 ms
144,348 KB
testcase_21 AC 515 ms
144,420 KB
testcase_22 AC 502 ms
144,476 KB
testcase_23 AC 514 ms
141,156 KB
testcase_24 AC 510 ms
144,364 KB
testcase_25 AC 515 ms
144,504 KB
testcase_26 AC 517 ms
144,708 KB
testcase_27 AC 542 ms
144,592 KB
testcase_28 AC 513 ms
144,516 KB
testcase_29 AC 423 ms
144,560 KB
testcase_30 AC 426 ms
144,352 KB
testcase_31 AC 427 ms
144,284 KB
testcase_32 AC 424 ms
144,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
A = list(map(int, input().split()))
imos = [0] * (n + 1)
for i, a in enumerate(A):
    imos[i] += a
    imos[i + 1] -= a

for _ in range(Q):
    l, r = map(int, input().split())
    imos[l - 1] += 1
    imos[r] -= 1

for i in range(n):
    imos[i + 1] += imos[i]

print(*[i % 2 for i in imos[:-1]])
0