結果
問題 | No.1673 Lamps on a line |
ユーザー | kazu107 |
提出日時 | 2021-09-10 22:09:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 1,528 ms |
コンパイル使用メモリ | 159,540 KB |
実行使用メモリ | 16,824 KB |
最終ジャッジ日時 | 2024-06-12 00:26:39 |
合計ジャッジ時間 | 8,087 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, Q; cin >> N >> Q; vector<int> vec(N, 0); for (int i = 0; i < Q; i ++) { int a, b; cin >> a >> b; int ans = 0; for (int j = a; j <= b; a ++) { if (vec.at(j - 1) == '0') { vec.at(j - 1) = 1; ans++; } else { vec.at(j - 1) = 0; } if (j == b) { cout << ans << endl; } } } }