結果

問題 No.1673 Lamps on a line
ユーザー bluemeganebluemegane
提出日時 2021-09-11 07:06:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 3,250 ms
コンパイル使用メモリ 108,120 KB
実行使用メモリ 32,508 KB
最終ジャッジ日時 2024-06-22 08:22:16
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
26,068 KB
testcase_01 AC 23 ms
24,304 KB
testcase_02 AC 59 ms
28,088 KB
testcase_03 AC 58 ms
30,280 KB
testcase_04 AC 87 ms
30,496 KB
testcase_05 AC 25 ms
26,156 KB
testcase_06 AC 77 ms
30,448 KB
testcase_07 AC 78 ms
27,528 KB
testcase_08 AC 24 ms
24,396 KB
testcase_09 AC 103 ms
31,948 KB
testcase_10 AC 109 ms
32,508 KB
testcase_11 AC 30 ms
24,012 KB
testcase_12 AC 119 ms
29,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var q = int.Parse(line[1]);
        getAns(n, q);
    }
    static void getAns(int n, int q)
    {
        var ans = new int[q];
        var on = new bool[n];
        var count = 0;
        for (int i = 0; i < q; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var L = int.Parse(line[0]) - 1;
            var r = int.Parse(line[1]) - 1;
            for (int j = L; j <= r; j++)
            {
                if (on[j]) { on[j] = false; count--; }
                else { on[j] = true; count++; }
            }
            ans[i] = count;
        }
        Console.WriteLine(string.Join("\n", ans));
    }
}
0