結果

問題 No.1673 Lamps on a line
ユーザー merlinmerlin
提出日時 2021-09-10 21:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 51,672 KB
最終ジャッジ日時 2024-06-11 22:24:41
合計ジャッジ時間 6,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
37,736 KB
testcase_01 AC 73 ms
37,680 KB
testcase_02 AC 246 ms
45,864 KB
testcase_03 AC 250 ms
46,056 KB
testcase_04 AC 330 ms
46,000 KB
testcase_05 AC 142 ms
40,880 KB
testcase_06 AC 308 ms
46,512 KB
testcase_07 AC 290 ms
47,336 KB
testcase_08 AC 106 ms
38,940 KB
testcase_09 AC 343 ms
49,280 KB
testcase_10 AC 369 ms
50,164 KB
testcase_11 AC 177 ms
42,912 KB
testcase_12 AC 376 ms
51,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),q=Integer.parseInt(s[1]);
        int ans=0,i;
        boolean t[]=new boolean[n];
        while(q-->0)
        {
            s=bu.readLine().split(" ");
            int l=Integer.parseInt(s[0])-1,r=Integer.parseInt(s[1])-1;
            for(i=l;i<=r;i++)
            {
                t[i]=!t[i];
                if(t[i]) ans++;
                else ans--;
            }
            sb.append(ans+"\n");
        }
        System.out.print(sb);
    }
}
0