結果

問題 No.2879 Range Flip Queries
ユーザー kakel-sankakel-san
提出日時 2024-10-06 23:40:43
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 635 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 13,977 ms
コンパイル使用メモリ 168,164 KB
実行使用メモリ 243,616 KB
最終ジャッジ日時 2024-10-06 23:41:19
合計ジャッジ時間 34,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,848 KB
testcase_01 AC 61 ms
30,848 KB
testcase_02 AC 62 ms
31,104 KB
testcase_03 AC 488 ms
70,912 KB
testcase_04 AC 480 ms
70,808 KB
testcase_05 AC 494 ms
71,040 KB
testcase_06 AC 474 ms
70,820 KB
testcase_07 AC 497 ms
71,040 KB
testcase_08 AC 62 ms
30,848 KB
testcase_09 AC 63 ms
31,104 KB
testcase_10 AC 62 ms
31,104 KB
testcase_11 AC 62 ms
31,360 KB
testcase_12 AC 64 ms
31,232 KB
testcase_13 AC 514 ms
92,160 KB
testcase_14 AC 598 ms
93,700 KB
testcase_15 AC 403 ms
74,112 KB
testcase_16 AC 220 ms
67,404 KB
testcase_17 AC 370 ms
93,108 KB
testcase_18 AC 583 ms
89,580 KB
testcase_19 AC 594 ms
89,600 KB
testcase_20 AC 584 ms
89,588 KB
testcase_21 AC 598 ms
89,744 KB
testcase_22 AC 627 ms
89,728 KB
testcase_23 AC 583 ms
89,448 KB
testcase_24 AC 593 ms
89,856 KB
testcase_25 AC 635 ms
89,772 KB
testcase_26 AC 593 ms
89,904 KB
testcase_27 AC 604 ms
89,984 KB
testcase_28 AC 617 ms
89,772 KB
testcase_29 AC 589 ms
87,336 KB
testcase_30 AC 573 ms
87,440 KB
testcase_31 AC 607 ms
87,344 KB
testcase_32 AC 591 ms
243,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (120 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, q) = (c[0], c[1]);
        var a = NList;
        var map = NArr(q);
        var rev = new int[n + 1];
        foreach (var flip in map)
        {
            ++rev[flip[0] - 1];
            ++rev[flip[1]];
        }
        for (var i = 0; i < n; ++i)
        {
            if (i > 0) rev[i] += rev[i - 1];
            if (rev[i] % 2 == 1) a[i] = 1 - a[i];
        }
        WriteLine(string.Join(" ", a));
    }
}
0