結果
問題 | No.1673 Lamps on a line |
ユーザー | 杨娵隅 |
提出日時 | 2021-09-10 21:48:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 2,099 ms |
コンパイル使用メモリ | 201,728 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-06-11 23:25:11 |
合計ジャッジ時間 | 6,291 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,888 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 15 ms
6,940 KB |
testcase_03 | AC | 14 ms
6,940 KB |
testcase_04 | AC | 24 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 22 ms
6,940 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int maxn = 5e5 + 10; int a[maxn]; int main() { int N, Q; cin >> N >> Q; while (Q --) { int l, r; scanf("%d %d", &l, &r); for (int i = l; i <= r; i ++) { if (a[i]) a[i] = 0; else a[i] = 1; }int cnt = 0; for (int i = 1; i <= N; i ++) if (a[i]) cnt ++; cout << cnt << "\n"; } return 0; }