結果

問題 No.1673 Lamps on a line
ユーザー stoqstoq
提出日時 2021-08-02 09:39:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 203,944 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-06-11 21:34:31
合計ジャッジ時間 10,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,884 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 16 ms
6,944 KB
testcase_07 TLE -
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 319 ms
6,944 KB
testcase_10 AC 1,488 ms
6,940 KB
testcase_11 AC 152 ms
6,944 KB
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i, m, n) for (int i = m; i < (int)(n); ++i)
#define rep(i, n) REP(i, 0, n)
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

int main()
{
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, q;
  cin >> n >> q;
  int a[500010] = {};
  rep(i, q)
  {
    int l, r;
    cin >> l >> r;
    l--;
    int sum = 0;
    REP(j, l, r)
    a[j] ^= 1;
    rep(j, n) sum += a[j];
    cout << sum << "\n";
  }
}
0