結果

問題 No.2879 Range Flip Queries
ユーザー kyotoku1483kyotoku1483
提出日時 2024-09-21 23:38:35
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-09-21 23:38:45
合計ジャッジ時間 7,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 71 ms
5,376 KB
testcase_04 AC 77 ms
5,376 KB
testcase_05 AC 68 ms
5,376 KB
testcase_06 AC 69 ms
5,376 KB
testcase_07 AC 72 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 138 ms
5,376 KB
testcase_14 AC 147 ms
5,376 KB
testcase_15 AC 99 ms
5,376 KB
testcase_16 AC 50 ms
5,376 KB
testcase_17 AC 118 ms
5,376 KB
testcase_18 AC 183 ms
5,632 KB
testcase_19 AC 207 ms
5,632 KB
testcase_20 AC 179 ms
5,504 KB
testcase_21 AC 184 ms
5,760 KB
testcase_22 AC 185 ms
5,504 KB
testcase_23 AC 186 ms
5,632 KB
testcase_24 AC 213 ms
5,632 KB
testcase_25 AC 181 ms
5,632 KB
testcase_26 AC 185 ms
5,632 KB
testcase_27 AC 186 ms
5,760 KB
testcase_28 AC 190 ms
5,760 KB
testcase_29 AC 180 ms
5,632 KB
testcase_30 AC 172 ms
5,760 KB
testcase_31 AC 171 ms
5,760 KB
testcase_32 AC 175 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main() {
    int n, q;
    scanf("%d%d", &n, &q);
    int a[n];
    for (int i = 0; i < n; ++i) scanf("%d", &a[i]);
    int b[n];
    for (int i = 0; i < n; ++i) b[i] = 0;
    for (int i = 0; i < q; ++i) {
        int l, r;
        scanf("%d%d", &l, &r);
        l--;
        b[l] ^= 1;
        if (r < n) b[r] ^= 1;
    }
    for (int i = 1; i < n; ++i) b[i] ^= b[i - 1];
    for (int i = 0; i < n; ++i) {
        a[i] ^= b[i];
        if (i == 0) printf("%d", a[i]);
        else printf(" %d", a[i]);
    }
    printf("\n");
    return 0;
}
0