結果

問題 No.1673 Lamps on a line
ユーザー tentententen
提出日時 2021-09-13 14:19:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 1,354 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 51,596 KB
最終ジャッジ日時 2024-06-25 13:55:15
合計ジャッジ時間 5,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,784 KB
testcase_01 AC 54 ms
37,264 KB
testcase_02 AC 201 ms
47,308 KB
testcase_03 AC 202 ms
45,420 KB
testcase_04 AC 264 ms
47,136 KB
testcase_05 AC 130 ms
39,868 KB
testcase_06 AC 224 ms
43,600 KB
testcase_07 AC 250 ms
47,668 KB
testcase_08 AC 85 ms
39,060 KB
testcase_09 AC 290 ms
49,848 KB
testcase_10 AC 300 ms
50,096 KB
testcase_11 AC 155 ms
41,684 KB
testcase_12 AC 309 ms
51,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        boolean[] lights = new boolean[n + 1];
        int count = 0;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            for (int j = left; j <= right; j++) {
                lights[j] ^= true;
                if (lights[j]) {
                    count++;
                } else {
                    count--;
                }
            }
            sb.append(count).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0