結果
問題 | No.1673 Lamps on a line |
ユーザー | akakimidori |
提出日時 | 2021-08-31 16:58:21 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 358 bytes |
コンパイル時間 | 4,251 ms |
コンパイル使用メモリ | 162,996 KB |
実行使用メモリ | 12,064 KB |
最終ジャッジ日時 | 2024-06-11 21:49:57 |
合計ジャッジ時間 | 7,205 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
11,936 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 78 ms
6,816 KB |
testcase_03 | AC | 77 ms
6,940 KB |
testcase_04 | AC | 132 ms
6,944 KB |
testcase_05 | AC | 9 ms
6,944 KB |
testcase_06 | AC | 117 ms
6,944 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#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) int main() { 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"; } }