結果

問題 No.1673 Lamps on a line
ユーザー ripityripity
提出日時 2021-10-23 20:41:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,223 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 78,792 KB
実行使用メモリ 66,464 KB
最終ジャッジ日時 2024-09-25 11:53:26
合計ジャッジ時間 12,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,076 KB
testcase_01 AC 109 ms
40,100 KB
testcase_02 AC 759 ms
57,692 KB
testcase_03 AC 766 ms
57,896 KB
testcase_04 AC 1,056 ms
58,768 KB
testcase_05 AC 305 ms
47,452 KB
testcase_06 AC 921 ms
58,740 KB
testcase_07 AC 896 ms
59,468 KB
testcase_08 AC 203 ms
44,032 KB
testcase_09 AC 1,086 ms
57,988 KB
testcase_10 AC 1,148 ms
59,536 KB
testcase_11 AC 384 ms
48,716 KB
testcase_12 AC 1,223 ms
66,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args){
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] cnt = new int[N];
        int Q = sc.nextInt();
        int ans = 0;
        for( int i = 0; i < Q; i++ ) {
            int L = sc.nextInt()-1;
            int R = sc.nextInt()-1;
            for( int j = L; j <= R; j++ ) {
                cnt[j]++;
                if( cnt[j]%2 == 0 ) ans--;
                else ans++;
            }
            System.out.println(ans);
        }
        
        sc.close();
        
    }
    
}
0