結果
問題 | No.1673 Lamps on a line |
ユーザー | kuhaku |
提出日時 | 2021-09-10 22:48:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,016 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 200,736 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-12 02:23:46 |
合計ジャッジ時間 | 5,011 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 216 ms
5,376 KB |
testcase_03 | AC | 218 ms
5,376 KB |
testcase_04 | AC | 365 ms
5,376 KB |
testcase_05 | AC | 20 ms
5,376 KB |
testcase_06 | AC | 315 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
// clang-format off #include <bits/stdc++.h> using namespace std; using ll = int64_t; using ld = long double; #define FOR(i, m, n) for(int i = (m); i < (n); ++i) #define FORR(i, m, n) for(int i = (m)-1; i >= (n); --i) #define rep(i, n) FOR(i, 0, n) #define repn(i, n) FOR(i, 1, n+1) #define repr(i, n) FORR(i, n, 0) #define repnr(i, n) FORR(i, n+1, 1) #define all(s) (s).begin(), (s).end() template <class T, class U> bool chmax(T &a, const U b) { return a < b ? a = b, true : false; } template <class T, class U> bool chmin(T &a, const U b) { return b < a ? a = b, true : false; } template <class T> istream &operator>>(istream &is, vector<T> &v) { for (T &i : v) is>>i; return is; } template <class T> ostream &operator<<(ostream &os, const vector<T> &v) { for (auto it=v.begin(); it!=v.end(); ++it) { os<<(it==v.begin()?"":" ")<<*it; } return os; } template <class Head, class... Tail> void co(Head&& head, Tail&&... tail) { if constexpr(sizeof...(tail)==0) cout<<head<<'\n'; else cout<<head<<' ',co(forward<Tail>(tail)...); } template <class Head, class... Tail> void ce(Head&& head, Tail&&... tail) { if constexpr(sizeof...(tail)==0) cerr<<head<<'\n'; else cerr<<head<<' ',ce(forward<Tail>(tail)...); } template<typename T, typename... Args> auto make_vector(T x, int arg, Args ...args) { if constexpr(sizeof...(args)==0) return vector<T>(arg, x); else return vector(arg,make_vector<T>(x, args...)); } void sonic() { ios::sync_with_stdio(false); cin.tie(nullptr); } void setp(const int n) { cout << fixed << setprecision(n); } constexpr int64_t INF = 1000000000000000003; constexpr int Inf = 1000000003; constexpr int MOD = 1000000007; constexpr int MOD_N = 998244353; constexpr double EPS = 1e-7; const double PI = acos(-1); // clang-format on int main(void) { int n, q; cin >> n >> q; bitset<50001> is_on; rep(i, q) { int l, r; cin >> l >> r; FOR(i, l - 1, r) { is_on[i].flip(); } co(is_on.count()); } return 0; }