結果

問題 No.2879 Range Flip Queries
ユーザー ra5anchorra5anchor
提出日時 2024-09-08 21:36:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 161,496 KB
最終ジャッジ日時 2024-09-08 21:36:52
合計ジャッジ時間 15,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,056 KB
testcase_01 AC 37 ms
52,612 KB
testcase_02 AC 37 ms
52,672 KB
testcase_03 AC 263 ms
76,124 KB
testcase_04 AC 291 ms
76,280 KB
testcase_05 AC 261 ms
75,720 KB
testcase_06 AC 262 ms
76,048 KB
testcase_07 AC 264 ms
76,192 KB
testcase_08 AC 45 ms
59,516 KB
testcase_09 AC 39 ms
54,388 KB
testcase_10 AC 44 ms
59,200 KB
testcase_11 AC 43 ms
54,304 KB
testcase_12 AC 59 ms
60,036 KB
testcase_13 AC 406 ms
118,568 KB
testcase_14 AC 429 ms
123,804 KB
testcase_15 AC 337 ms
96,608 KB
testcase_16 AC 186 ms
102,072 KB
testcase_17 AC 340 ms
140,376 KB
testcase_18 AC 516 ms
152,452 KB
testcase_19 AC 522 ms
160,260 KB
testcase_20 AC 526 ms
151,208 KB
testcase_21 AC 538 ms
161,060 KB
testcase_22 AC 518 ms
151,660 KB
testcase_23 AC 538 ms
160,416 KB
testcase_24 AC 526 ms
161,248 KB
testcase_25 AC 552 ms
161,192 KB
testcase_26 AC 530 ms
161,024 KB
testcase_27 AC 553 ms
161,212 KB
testcase_28 AC 544 ms
161,496 KB
testcase_29 AC 463 ms
160,888 KB
testcase_30 AC 438 ms
160,948 KB
testcase_31 AC 443 ms
160,916 KB
testcase_32 AC 438 ms
160,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
F = [0] * (N+1)
for i in range(Q):
    l, r = map(int, input().split())
    l -= 1
    F[l] += 1
    F[r] -= 1
now = 0
ans = []
for i in range(N):
    now += F[i]
    if now % 2 == 1:
        ans.append(A[i] * (-1) + 1)
    else:
        ans.append(A[i])
print(*ans)
        


0