結果

問題 No.1673 Lamps on a line
ユーザー kakel-sankakel-san
提出日時 2024-01-03 22:16:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 10,959 ms
コンパイル使用メモリ 168,492 KB
実行使用メモリ 216,388 KB
最終ジャッジ日時 2024-09-27 18:29:00
合計ジャッジ時間 12,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,976 KB
testcase_01 AC 54 ms
30,720 KB
testcase_02 AC 89 ms
42,752 KB
testcase_03 AC 90 ms
42,880 KB
testcase_04 AC 112 ms
51,456 KB
testcase_05 AC 58 ms
32,128 KB
testcase_06 AC 105 ms
48,384 KB
testcase_07 AC 100 ms
48,512 KB
testcase_08 AC 54 ms
31,360 KB
testcase_09 AC 117 ms
55,040 KB
testcase_10 AC 130 ms
58,336 KB
testcase_11 AC 64 ms
33,408 KB
testcase_12 AC 153 ms
216,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 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 map = NArr(q);
        var ans = new int[q];
        var lamp = new bool[n];
        var tmp = 0;
        for (var i = 0; i < q; ++i)
        {
            for (var j = map[i][0] - 1; j < map[i][1]; ++j)
            {
                if (lamp[j]) --tmp;
                else ++tmp;
                lamp[j] = !lamp[j];
            }
            ans[i] = tmp;
        }
        WriteLine(string.Join("\n", ans));
    }
}
0