結果

問題 No.1673 Lamps on a line
ユーザー ぷらぷら
提出日時 2021-09-10 21:22:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 2,956 ms
コンパイル使用メモリ 193,168 KB
最終ジャッジ日時 2025-01-24 09:28:15
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N,Q;
    cin >> N >> Q;
    vector<int>sum(N+1);
    int ans = 0;
    for(int i = 0; i < Q; i++) {
        int l,r;
        cin >> l >> r;
        l--;
        r--;
        for(int j = l; j <= r; j++) {
            sum[j] ^= 1;
            if(sum[j] == 0) {
                ans--;
            }
            else {
                ans++;
            }
        }
        cout << ans << endl;
    }
}
0